You can read about authorization, scopes and grant types here - Forum API documents docs/api
For using this api you need to get Access Token with read+post+market scope
Market API almost completely repeats WEB requests. Query parameters match. The only differences are the presence of PUT and DELETE methods (more on that below).
For example, a request to book an account on the WEB looks like this: zelenka.guru/market/:itemId/reserve?price=:accountPrice
, and an API request looks like this: api.lzt.market/:itemId/reserve?price=accountPrice
.
api.lzt.market
20 requests per minute (3 seconds delay between per request) If you exceed the limit, the response code 429 will be returned to you.
10 requests per minute (6 seconds delay between per request) If you exceed the limit, you will receive message error
{
item: {
"item_id": (int),
"item_state": (string),
"published_date": (unix timestamp in seconds),
"title": (string),
"description": (string),
"price": (int),
...
},
"seller": {
"user_id": (int),
"username": (string),
"avatar_date": (unix timestamp in seconds),
"user_group_id": (int),
"secondary_group_ids": (string),
"display_style_group_id": (int),
"uniq_username_css": (string)
}
}
{
"status": "ok",
"message": "Changes Saved",
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Displays a list of latest accounts
Parameters:
- N/A
Response:
{
"items": [
(account)
],
"totalItems": (int),
"totalItemsPrice": (int),
"perPage": (int),
"page": (int),
"searchUrl": (string),
}
Displays a list of accounts in a specific category according to your parameters
Parameters:
pmin
(optional): Minimal price of account (Inclusive)pmax
(optional): Maximum price of account (Inclusive)title
(optional): The word or words contained in the account titleparse_sticky_items
(optional): If yes, API will return stickied accounts in resultsparse_same_items
(optional): If yes, API will return account history in resultsOptional category parameters
(optional): You can find it using "Inspect code element" in your browser or in WEB urlgame[]
(optional): The ID of a game found on the accountpage
(optional): The number of the page to display results from
1
steam
- Steam2
vkontakte
- VK3
origin
- Origin4
warface
- Warface5
uplay
- Uplay7
socialclub
- Social Club9
fortnite
- Fortnite10
instagram
- Instagram11
battlenet
- Battle.net12
epicgames
- Epic Games13
valorant
- Valorant14
world-of-tanks
- World Of Tanks16
wot-blitz
- World Of Tanks Blitz15
supercell
- Supercell17
genshin-impact
- Genshin Impact18
escape-from-tarkov
- Escape From Tarkov19
vpn
- VPN20
tiktok
- TikTok22
discord
- Discord23
cinema
- Online Cinema24
telegram
- Telegram25
youtube
- YouTube26
spotify
- Spotify27
war-thunder
- War Thunder
Displays a list of owned accounts
Parameters:
category_id
(optional): Accounts categorypmin
(optional): Minimal price of account (Inclusive)pmax
(optional): Maximum price of account (Inclusive)title
(optional): The word or words contained in the account titleOptional category parametes
(optional): You can find it using "Inspect code element" in your browser or in WEB url
Displays a list of purchased accounts
Parameters:
category_id
(optional): Accounts categorypmin
(optional): Minimal price of account (Inclusive)pmax
(optional): Maximum price of account (Inclusive)title
(optional): The word or words contained in the account titleOptional category parametes
(optional): You can find it using "Inspect code element" in your browser or in WEB url
Displays a list of favourites accounts
Parameters:
- N/A
Displays a list of viewed accounts
Parameters:
- N/A
Displays account information
Parameters:
- N/A
Response:
{
item: {
"item_id": (int),
"item_state": (string),
"published_date": (unix timestamp in seconds),
"title": (string),
"description": (string),
"price": (int),
"update_stat_date": (unix timestamp in seconds),
"refreshed_date": (unix timestamp in seconds),
"login": (string),
"temp_email": (string),
"view_count": (int),
"information": (string),
"item_origin": (string),
...
},
"seller": {
"user_id": (int),
"username": (string),
"avatar_date": (unix timestamp in seconds),
"user_group_id": (int),
"secondary_group_ids": (string),
"display_style_group_id": (int),
"uniq_username_css": (string)
}
}
Returns Steam account html code
Parameters:
type
(optional): Type of page -profile
orgames
Displays search parameters for a category
Parameters:
- N/A
Response:
{
"category": {
"category_id": (int),
"sub_category_id": (int),
"category_order": (int),
"category_title": (string),
"category_name": (string),
"category_url": (string),
...
},
"params": [
{
"name": (string),
"input": (string),
"description": (string),
"values": [
(string)
...
]
}
...
]
}
Displays a list of games in the category
Parameters:
- N/A
Response:
{
"games": [
{
"app_id": (string),
"title": (string),
"category_id": (int),
"img": (string),
"ru": [
(string)
...
],
"url": (string)
}
...
]
}
First way:
Check and buy account.
Parameters:
price
(required) Currenct price of account in your currencybuy_without_validation
Put1
if you want to buy account without account data validation (not safe)
Second way:
You need to make 3 requests:
POST /:itemId/reserve
, POST /:itemId/check-account
and POST /:itemId/confirm-buy
Reserves account for you. Reserve time - 300 seconds.
Parameters:
price
(required) Currenct price of account in your currency
Response:
{
"status": "ok",
"reserve_end_date": (unix timestamp in seconds),
"item": {
(account)
},
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Cancels reserve.
Parameters:
- N/A
Response:
{
status: "ok",
message: "Changes Saved"
}
Checking account for validity. If the account is invalid, the purchase will be canceled automatically (you don't need to make request POST /:itemId/cancel-reserve
Parameters:
- N/A
Response:
{
"status": "ok",
"item": {
(account)
},
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Confirm buy.
Parameters:
buy_without_validation
Put1
if you want to buy account without account data validation (not safe)
Response:
{
"status": "ok",
"reserve_end_date": (unix timestamp in seconds),
"item": {
"loginData": {
"raw": (string),
"encodedRaw": (string),
"login": (string),
"password": (string),
"encodedPassword": (string),
"oldPassword": (string),
"encodedOldPassword": (string),
"adviceToChangePassword": (boolean)
},
...
},
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Send money to any user
Parameters:
user_id
(required) User id of receiver. Ifuser_id
specified,username
is not required.username
(required) Username of receiver. Ifusername
specified,user_id
is not required.amount
(required) Amount to send in your currency.currency
(required) Using currency for amount. Allowed values:cny
usd
rub
eur
uah
kzt
byn
gbp
secret_answer
(required) Secret answer of your accountcomment
(optional) Transfer comment. Maximum 255 characterstransfer_hold
(optional) (Boolean) Hold transfer or not.hold_length_value
(optional) Hold length value (number).hold_length_option
(optional) Hold length option (string). Allowed values:hour
day
week
month
year
E.g. you want to hold money transfer on 3 days. hold_length_value
- will be '3', hold_length_option
- will be 'days'.
E.g. you want to hold money transfer on 12 hours.
hold_length_value
- will be '12', hold_length_option
- will be 'hours'
Response:
{
"status": (string),
"message": (string),
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Displays list of your payments
Parameters:
type
(optional): Type of operation. Allowed operation types:income
cost
refilled_balance
withdrawal_balance
paid_item
sold_item
money_transfer
receiving_money
internal_purchase
claim_hold
pmin
(optional): Minimal price of operation (Inclusive)pmax
(optional): Maximum price of operation (Inclusive)receiver
(optional): Username of user, which receive money from yousender
(optional): Username of user, which sent money to youstartDate
(optional): Start date of operation (RFC 3339 date format)endDate
(optional): End date of operation (RFC 3339 date format)wallet
(optional): Wallet, which used for money payotscomment
(optional): Comment for money transfersis_hold
(optional): Display hold operationsshow_payment_stats
(optional): Display payment stats for selected period (outgoing value, incoming value)
Response:
{
"payments": {
(payment)
},
"hasNextPage": (boolean),
"lastOperationId": (int),
"nextPageHref": (string),
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
You need to make 2 requests:
POST /item/add
and POST /:itemId/goods/check
For categories, which required temporary email (Steam, Social Club) you need to make GET /:itemId/goods/add
to get temporary email
Adds account on the market. After this request an account will have item_state = awaiting
(not displayed in search)
Parameters:
title
(required) Russian title of account. Iftitle
specified andtitle_en
is empty,title_en
will be automatically translated to English language.title_en
(optional) English title of account. Iftitle_en
specified andtitle
is empty,title
will be automatically translated to Russian language.price
(required) Account price in your currencycategory_id
(required) Category idcurrency
(required) Using currency. Allowed values:cny
usd
rub
eur
uah
kzt
byn
gbp
item_origin
(required) Item originextended_guarantee
(required) Guarantee type. Allowed values:-1
- 12 hours,0
- 24 hours,1
- 3 days.description
(optional) Account public descriptioninformation
(optional) Account private information (visible for buyer only if purchased)has_email_login_data
Required if a category is one of list of Required email login data categories (see below)email_login_data
Required_ if a category is one of list of Required email login data categories (see below) . Email login data (login:pass format)email_type
(optional) Email type. Allowed values:native
autoreg
allow_ask_discount
(optional) Allow users to ask discount for this accountproxy_id
(optional) Using proxy id for account checking. See Proxy Settings to get or edit proxy listrandom_proxy
(optional) Pass 1, if you get "steam_captcha" in previous response
Account origin. Where did you get it from.
brute
- Account received using Bruteforcefishing
- Account received from fishing pagestealer
- Account received from stealer logsautoreg
- Account is automatically registered by a toolpersonal
- Account is yours. You created it yourself.resale
- Account received from another sellerretrive
- Account is recovered by email or phone (only for VKontakte category)
- Fortnite (id 9)
- Epic games (id 12)
- Escape from Tarkov (id 18)
Response:
{
"status": "ok",
"item": {
"item_id": (int),
"item_state": "awaiting",
...
},
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Get info about not published item. For categories, which required temporary email (Steam, Social Club), you will get temporary email in response.
Parameters:
resell_item_id
(optional) Put item id, if you are trying to resell item. This is useful to pass temporary email from reselling item to new item. You will get same temporary email from reselling account.
Response:
{
"status": "ok",
"item": {
"item_id": (int),
"item_state": "awaiting",
...
},
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
"temp_email": (string),
"sessionLoginData": [],
"ignoreCookieUpload": (boolean),
}
}
Check account on validity. If account is valid, account will be published on the market.
Parameters:
login
(optional) Account login (or email)password
(optional) Account passwordlogin_password
(optional) Account login data format login:passwordclose_item
(optional) If set, the item will be closeditem_state = closed
extra
(optional) (Array) Extra params for account checking. E.g. you need to put cookies toextra[cookies]
if you want to upload Fortnite/Epic Games accountresell_item_id
Put if you are trying to resell an account.random_proxy
(optional) Pass 1, if you get "steam_captcha" in previous response
Response:
{
"status": (string),
"message": (string),
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Display category list
Parameters:
top_queries
(optional) (Boolean) Display top queries for per category
Response:
{
"category_id": (int),
"sub_category_id": (int),
"category_order": (int),
"category_title": (string),
"category_name": (string),
"category_url": (string),
"category_description_html": (string),
"category_login_url": (string),
...
}
...
Gets confirmation code or link.
Parameters:
email
(required) Account email
Response:
{
"item": {
(account)
},
"codeData": {
"code": (sring),
"date": (unix timestamp in seconds),
"textPlain": (string)
}
}
Gets confirmation code from MaFile (Only for Steam accounts)
Response:
{
"item": {
(account)
},
"codeData": {
"code": (sring),
"date": (unix timestamp in seconds),
}
}
Returns mafile in JSON. Warning: this action is cancelling active account guarantee.
Response:
{
"maFile": {
}
}
Cancel guarantee of account. It can be useful for account reselling.
Parameters:
- N/A
Response:
{
"status": "ok",
"message": "Changes Saved"
}
Changes password of account.
Parameters:
_cancel
(optional) Cancel change password recommendation. It will be helpful, if you don't want to change password and get login data
Response:
{
"status": "ok",
"message": "Changes Saved"
"new_password": (string)
}
Gets password from temp email of account. After calling of this method, the warranty will be cancelled and you cannot automatically resell account.
Parameters:
- N/A
Response:
{
"item": {
(account)
},
}
Changes password of account.
Parameters:
_cancel
(optional) Cancel change password recommendation. It will be helpful, if you don't want to change password and get login data
Response:
{
"status": "ok",
"message": "Changes Saved"
"new_password": (string)
}
Edits any details of account.
Parameters:
key
(_optional) Key to edit (key list you can see below). E.g. price.value
(_optional) Value to editkey_values
(optional) Key-values to edit (Array). E.g. key_values[title]=Account&key_values[price]=100currency
(required) Currency of account price. Required if you are trying to changeprice
field. Allowed values:cny
usd
rub
eur
uah
kzt
byn
gbp
title
(optional) Russian title of account. Iftitle
specified andtitle_en
is empty,title_en
will be automatically translated to English language.title_en
(optional) English title of account. Iftitle_en
specified andtitle
is empty,title
will be automatically translated to Russian language.price
(optional) Account price in your currency. Allowed values:cny
usd
rub
eur
uah
kzt
byn
gbp
item_origin
(optional) Item origindescription
(optional) Account public descriptioninformation
(optional) Account private information (visible for buyer only if purchased)has_email_login_data
(optional) Set boolean, if you have email login dataemail_login_data
(optional) Email login data (login:pass format)email_type
(optional) Email type. Allowed values:native
,autoreg
allow_ask_discount
(optional) Allow users to ask discount for this accountproxy_id
(optional) Using proxy id for account checking. See GET /account/market to get or edit proxy list
Response:
{
"status": "ok",
"message": "Changes Saved"
}
Deletes your account from public search. Deletetion type is soft. You can restore account after deletetion if you want.
Parameters:
reason
(requred) Delete reason
Response:
{
"status": "ok",
"message": (string),
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Adds tag for the account
Parameters:
tag_id
(required) Tag id (Tag list is available via GET/me
)
Response:
{
"itemId": (int),
"tag": {
"tag_id": (int),
"title": (string),
"isDefault": (boolean),
"forOwnedAccountsOnly": (boolean),
"bc": (string)
},
"addedTagId": (int),
"deleteTags": [
(int)
],
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Deletes tag for the account
Parameters:
tag_id
(required) Tag id
Response:
{
"itemId": (int),
"deleteTags": [
(int)
],
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Bumps account in the search
Parameters:
- N/A
Response:
{
"status": "ok",
"message": (string),
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Adds account from favourites
Parameters:
- N/A
Response:
{
"status": "ok",
"message": (string),
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Deletes account from favourites
Parameters:
- N/A
Response:
{
"status": "ok",
"message": "Changes Saved"
}
Stick account in the top of search
Parameters:
- N/A
Response:
{
"status": "ok",
"message": (string)
}
Unstick account of the top of search
Parameters:
- N/A
Response:
{
"status": "ok",
"message": "Changes Saved"
}
Change of account owner
Parameters:
username
(required) The username of the new account ownersecret_answer
(required) Secret answer of your account
Response:
{
"status": "ok",
"message": "Changes Saved"
}
Displays info about your profile
Parameters:
- N/A
Response:
{
"user": {
"user_id": (int),
"username": (string),
"user_message_count": (int),
"user_register_date": (unix timestamp in seconds),
"user_like_count": (int),
"short_link": (string),
"user_email": (string),
"user_unread_notification_count": (int),
"user_dob_day": (int),
"user_dob_month": (int),
"user_dob_year": (int),
"user_title": (string),
"user_last_seen_date": (unix timestamp in seconds),
"balance": (int),
"hold": (int),
...
}
"isIsolatedMarket": (boolean),
"isIsolatedMarketAlt": (boolean),
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Change settings about your profile on the market
Parameters:
disable_steam_guard
(optional) (Boolean) Disable Steam Guard on account purchase momentuser_allow_ask_discount
(optional) (Boolean) Allow users ask discount for your accountsmax_discount_percent
(optional) (UInt) Maximum discount percents for your accountsallow_accept_accounts
(optional) (String) Usernames who can transfer market accounts to you. Separate values with a comma.hide_favourites
(optional) (Boolean) Hide your profile info when you add an account to favorites
Response:
{
"status": "ok",
"message": "Changes Saved"
}
Gets your proxy list
Parameters:
- N/A
Response:
{
"proxies": {
(string): {
"proxy_id": (int),
"user_id": (int),
"proxy_ip": (string),
"proxy_port": (int),
"proxy_user": (string),
"proxy_pass": (string),
"proxyString": (string)
},
"system_info": {
"visitor_id": (int),
"time": (unix timestamp in seconds)
}
}
Add single proxy or proxy list
To add single proxy use this parameters:
proxy_ip
(required) Proxy ip or hostproxy_port
(required) Proxy portproxy_user
(optional) Proxy usernameproxy_pass
(optional) Proxy password
To add proxy list use this parameters:
proxy_row
(required) Proxy list in String format ip:port:user:pass. Each proxy must be start with new line (use \r\n separator)
Response:
{
"status": "ok",
"message": "Changes Saved",
}
Delete single or all proxies
Parameters:
proxy_id
(optional) Proxy iddelete_all
(optional) Set boolean if you want to delete all proxy
Response:
{
"status": "ok",
"message": "Changes Saved",
}
- Steam
- Fortnite
- VKontakte
- Genshin Impact
- Valorant
- Telegram
- Diamond RP
- Supercell
- Origin
- World of Tanks
- World of Tanks Blitz
- Epic Games
- Escape from Tarkov
- Social Club
- Uplay
- War Thunder
- Discord
- TikTok
- Battle.net
- VPN
- Streaming media services
- Spotify
- Warface
- YouTube
- Minecraft
game[]
(array
) - List of games
hours_played
(array
) - List of minimum hours played by game
hours_played_max
(array
) - List of maximum hours played by game
vac
(number
) - List of VAC bans by game
rt
(boolean
) - Has red sign
prime
(boolean
) - Has Prime in CS:GO
daybreak
(number
) - Number of days the account has been offline
limit
(boolean
) - Has 5$ limit
mafile
(boolean
) - Has .mafile
reg
(number
) - How old is the account
reg_period
(string
) - In what notation is time measured
lmin
(number
) - Minimum level
lmax
(number
) - Maximum level
rmin
(number
) - Minimum rank in CS:GO Matchmaking
rmax
(number
) - Maximum rank in CS:GO Matchmaking
wingman_rmin
(number
) - Minimum rank in CS:GO Wingman
wingman_rmax
(number
) - Maximum rank in CS:GO Wingman
no_vac
(boolean
) - Has no VAC ban
mm_ban
(boolean
) - Has CS:GO Matchmaking ban
balance_min
(number
) - Minimum balance
balance_max
(number
) - Maximum balance
inv_game
(number
) - Game ID to check inventory price
inv_min
(number
) - Minimum inventory price for game
inv_max
(number
) - Maximum inventory price for game
friend_min
(number
) - Minimum number of friends
friend_max
(number
) - Maximum number of friends
gmin
(number
) - Minimum number of games
gmax
(number
) - Maximum number of games
win_count_min
(number
) - Minimum number of wins
win_count_max
(number
) - Maximum number of wins
medal[]
(array
) - List of medal names
medal_id[]
(array
) - List of medal IDs
medal_min
(number
) - Minimum number of medals
medal_max
(number
) - Maximum number of medals
gift[]
(array
) - List of gifts
gift_min
(number
) - Minimum number of gifts
gift_max
(number
) - Maximum number of gifts
recently_hours_min
(number
) - Minimum number of recently played hours
recently_hours_max
(number
) - Maximum number of recently played hours
country[]
(array
) - List of allowed countries
not_country[]
(array
) - List of disallowed countries
csgo_profile_rank
(string
) - CS:GO rank (>=)
csgo_profile_rank_min
(number
) - Minimum CS:GO rank
csgo_profile_rank_max
(number
) - Maximum CS:GO rank
solommr_min
(number
) - Minimum number of Dota 2 MMR
solommr_max
(number
) - Maximum number of Dota 2 MMR
d2_game_count_min
(number
) - Minimum number of Dota 2 games
d2_game_count_max
(number
) - Maximum number of Dota 2 games
d2_win_count_min
(number
) - Minimum number of Dota 2 wins
d2_win_count_max
(number
) - Maximum number of Dota 2 wins
d2_behavior_min
(number
) - Minimum number of Dota 2 behavior
d2_behavior_max
(number
) - Maximum number of Dota 2 behavior
faceit_lvl_min
(number
) - Minimum FACEIT level
faceit_lvl_max
(number
) - Maximum FACEIT level
points_min
(number
) - Minimum number of Steam points
points_max
(number
) - Maximum number of Steam points
relevant_gmin
(number
) - Minimum number of relevant games
relevant_gmax
(number
) - Maximum number of relevant games
last_trans_date
(number
) - How old is last transaction
last_trans_date_period
(string
) - In what notation is time measured
last_trans_date_later
(number
) - How new is last transaction
last_trans_date_period_later
(string
) - In what notation is time measured
no_trans
(boolean
) - Has no transactions
trans
(boolean
) - Has transactions
smin
(number
) - Minimum number of skins
smax
(number
) - Maximum number of skins
vbmin
(number
) - Minimum number of V-Bucks
vbmax
(number
) - Maximum number of V-Bucks
skin
(array
) - Skins
pickaxe
(array
) - Pickaxes
dance
(array
) - Dances
glider
(array
) - Gliders
change_email
(boolean
) - Can change email
platform
(array
) - Platform
bp
(boolean
) - Has Battle Pass
lmin
(number
) - Minimum level
lmax
(number
) - Maximum level
bp_lmin
(number
) - Minimum level of Battle Pass
bp_lmax
(number
) - Maximum level of Battle Pass
rl_purchases
(boolean
) - Has Rocket League purchases
last_trans_date
(number
) - How old is last transaction
last_trans_date_period
(string
) - In what notation is time measured
no_trans
(boolean
) - Has no transactions
xbox_linkable
(boolean
) - Can be linked to Xbox
psn_linkable
(boolean
) - Can be linked to PSN
daybreak
(number
) - Number of days the account has been offline
temp_email
(boolean
) - Access to market temp mail
vk_country[]
(array
) - List of allowed countries
vk_city[]
(array
) - List of allowed cities
vk_friend_min
(number
) - Minimum number of friends
vk_friend_max
(number
) - Maximum number of friends
vk_follower_min
(number
) - Minimum number of followers
vk_follower_max
(number
) - Maximum number of followers
vk_vote_min
(number
) - Minimum number of votes
vk_vote_max
(number
) - Maximum number of votes
sex
(string
) - Sex of account
tel
(boolean
) - Has linked mobile
email
(boolean
) - Has linked email
tfa
(boolean
) - Has enabled 2FA
relation[]
(boolean
) - Has linked mobile
group_follower_min
(number
) - Minimum number of group followers
group_follower_max
(number
) - Maximum number of group followers
groups_min
(number
) - Minimum number of groups
groups_max
(number
) - Maximum number of groups
admin_level
(string
) - Admin level
min_age
(number
) - Minimum age
max_age
(number
) - Maximum age
dig_min
(number
) - Minimum number of digits in ID
dig_max
(number
) - Maximum number of digits in ID
conversations_min
(number
) - Minimum number of conversations
conversations_max
(number
) - Maximum number of conversations
reg
(number
) - How old is the account
reg_period
(string
) - In what notation is time measured
mcountry[]
(array
) - List of allowed countries of phone number
not_mcountry[]
(array
) - List of excluded countries of phone number
opened_profile
(boolean
) - Opened account profile
email
(boolean
) - Has linked email
tel
(boolean
) - Has linked mobile
character[]
(string
) - List of characters
weapon[]
(string
) - List of characters
region
(string
) - Region
ea
(boolean
) - Has linked external accounts
legendary_min
(number
) - Minimum number of legendary characters
legendary_max
(number
) - Maximum number of legendary characters
constellation_min
(number
) - Minimum number of constellations on legendary characters
constellation_max
(number
) - Maximum number of constellations on legendary characters
legendary_weapon_min
(number
) - Minimum number of legendary weapon characters
legendary_weapon_max
(number
) - Maximum number of legendary weapon characters
char_min
(number
) - Minimum number of characters
char_max
(number
) - Maximum number of characters
level_min
(number
) - Minimum level
level_max
(number
) - Maximum level
weaponSkin[]
(array
) - List of weapon skis
buddy[]
(array
) - List of buddies
agent[]
(array
) - List of agents
country[]
(array
) - List of allowed countries
not_country[]
(array
) - List of disallowed countries
daybreak
(number
) - Number of days the account has been offline
level_min
(number
) - Minimum level
level_max
(number
) - Maximum level
vp_min
(number
) - Minimum number of Valorant points
vp_max
(number
) - Maximum number of Valorant points
smin
(number
) - Minimum number of skins
smax
(number
) - Maximum number of skins
rmin
(number
) - Minimum rank (from 3 to 27)
rmax
(number
) - Maximum rank
last_rmin
(number
) - Last Minimum rank (from 3 to 27)
last_rmax
(number
) - Last Maximum rank
rank_type
(string
) - Rank type
amin
(number
) - Minimum amount of agents
amax
(number
) - Maximum amount of agents
region[]
(array
) - List of allowed regions
not_region[]
(array
) - List of disallowed regions
email
(boolean
) - Has linked email
tel
(boolean
) - Has linked mobile
changeable_email
(boolean
) - Can change email
scam
(boolean
) - Has a scam badge
spam
(boolean
) - Has a spam ban
password
(boolean
) - Has a cloud password
premium
(boolean
) - Has a premium subscription
country[]
(array
) - List of allowed countries
not_country[]
(array
) - List of disallowed countries
daybreak
(number
) - Number of days the account has been offline
system
(string
) - Account service
lmin
(number
) - Minimum level
lmax
(number
) - Maximum level
cup_min
(number
) - Minimum number of cups
cup_max
(number
) - Maximum number of cups
brawlers_min
(number
) - Minimum number of brawlers
brawlers_max
(number
) - Maximum number of brawlers
brawler
(array
) - List of brawlers
game
(array
) - List of games
country[]
(array
) - List of allowed countries
not_country[]
(array
) - List of disallowed countries
al_rank_group[]
(array
) - List of Apex Legends rank groups
al_level_min
(number
) - Minimum level in Apex Legends
al_level_max
(number
) - Maximum level in Apex Legends
xbox_connected
(boolean
) - Xbox connected to account
subscription
(string
) - Name of subscription
subscription_length
(number
) - Length of subscription
subscription_period
(string
) - In what notation is time measured
tel
(boolean
) - Has linked mobile
daybreak
(number
) - Number of days the account has been offline
battles_min
(number
) - Minimum number of battles
battles_max
(number
) - Maximum number of battles
gold_min
(number
) - Minimum number of gold
gold_max
(number
) - Maximum number of gold
silver_min
(number
) - Minimum number of silver
silver_max
(number
) - Maximum number of silver
top_min
(number
) - Minimum number of top tanks
top_max
(number
) - Maximum number of top tanks
prem_min
(number
) - Minimum number of premium tanks
prem_max
(number
) - Maximum number of premium tanks
top_prem_min
(number
) - Minimum number of top premium tanks
top_prem_max
(number
) - Maximum number of top premium tanks
win_pmin
(number
) - Minimum number of wins
win_pmax
(number
) - Maximum number of wins
tank
(array
) - List of tanks
region
(array
) - Region
not_region
(array
) - Exclude region
tel
(boolean
) - Has linked mobile
daybreak
(number
) - Number of days the account has been offline
battles_min
(number
) - Minimum number of battles
battles_max
(number
) - Maximum number of battles
gold_min
(number
) - Minimum number of gold
gold_max
(number
) - Maximum number of gold
silver_min
(number
) - Minimum number of silver
silver_max
(number
) - Maximum number of silver
top_min
(number
) - Minimum number of top tanks
top_max
(number
) - Maximum number of top tanks
prem_min
(number
) - Minimum number of premium tanks
prem_max
(number
) - Maximum number of premium tanks
top_prem_min
(number
) - Minimum number of top premium tanks
top_prem_max
(number
) - Maximum number of top premium tanks
win_pmin
(number
) - Minimum number of wins
win_pmax
(number
) - Maximum number of wins
tank
(array
) - List of tanks
region
(array
) - Region
not_region
(array
) - Exclude region
game
(array
) - List of games
change_email
(boolean
) - You can change email
rl_purchases
(boolean
) - Has Rocket League purchases
region
(string
) - Region
version[]
(string
) - List of versions
sc[]
(string
) - List of secured containers
exp_min
(number
) - Minimum experience
exp_max
(number
) - Maximum experience
level_min
(number
) - Minimum level
level_max
(number
) - Maximum level
rdr2
(boolean
) - Has Red Dead Redemption 2
gtav
(boolean
) - Has GTA 5
daybreak
(number
) - Number of days the account has been offline
fmin
(number
) - Minimum number of followers
fmax
(number
) - Maximum number of followers
post_min
(number
) - Minimum number of posts
post_max
(number
) - Maximum number of posts
game[]
(array
) - List of games
country[]
(array
) - List of allowed countries
not_country[]
(array
) - List of disallowed countries
daybreak
(number
) - Number of days the account has been offline
r6_level_min
(number
) - Minimum level in Tom Clancy's Rainbow Six Siege
r6_level_max
(number
) - Maximum level in Tom Clancy's Rainbow Six Siege
daybreak
(number
) - Number of days the account has been offline
gold_min
(number
) - Minimum number of gold
gold_max
(number
) - Maximum number of gold
silver_min
(number
) - Minimum number of silver
silver_max
(number
) - Maximum number of silver
rank_min
(number
) - Minimal rank
rank_max
(number
) - Maximum rank
eliteUnits_min
(number
) - Minimum number of elite units
eliteUnits_max
(number
) - Maximum number of elite units
played_min
(number
) - Minimum number of played games
played_max
(number
) - Maximum number of played games
wins_min
(number
) - Minimum number of wins
wins_max
(number
) - Maximum number of wins
phone_verified
(boolean
) - Has verified mobile
email_verified
(boolean
) - Has verified email
premium
(boolean
) - Has premium
tel
(boolean
) - Has linked mobile
nitro
(boolean
) - Has Nitro
billing
(boolean
) - Has billing
gifts
(boolean
) - Has gifts
quarantined
(boolean
) - Кодер еблан, почему вообще заблокированные акки можно заливать?
condition[]
(array
) - List of account conditions
chat_min
(number
) - Minimum number of chats
chat_max
(number
) - Maximum number of chats
reg
(number
) - How old is the account
reg_period
(string
) - In what notation is time measured
locale[]
(array
) - List of regions
not_locale[]
(array
) - List of regions that won't be included
badge[]
(array
) - List of badges
tel
(boolean
) - Has linked mobile
fmin
(number
) - Minimum number of followers
fmax
(number
) - Maximum number of followers
post_min
(number
) - Minimum number of posts
post_max
(number
) - Maximum number of posts
like_min
(number
) - Minimum number of likes
like_max
(number
) - Maximum number of likes
coins_min
(number
) - Minimum number of coins
coins_max
(number
) - Maximum number of coins
tt_country[]
(array
) - List of allowed countries
tt_not_country[]
(array
) - List of disallowed countries
cookie_login
(boolean
) - Login by cookies
verified
(boolean
) - Has a verified badge
hasLivePermission
(boolean
) - Can start a live stream
tel
(boolean
) - Has linked mobile
country[]
(array
) - List of allowed countries
not_country[]
(array
) - List of disallowed countries
cookies
(boolean
) - Login by cookies
login_without_cookies
(boolean
) - Login without cookies
fmin
(number
) - Minimum number of followers
fmax
(number
) - Maximum number of followers
post_min
(number
) - Minimum number of posts
post_max
(number
) - Maximum number of posts
reg
(number
) - How old is the account
reg_period
(string
) - In what notation is time measured
game
(array
) - List of games
daybreak
(number
) - Number of days the account has been offline
country[]
(array
) - List of allowed countries
not_country[]
(array
) - List of disallowed countries
edit_btag
(boolean
) - Can edit BattleTag
changeable_fn
(boolean
) - Can edit full name
real_id
(boolean
) - Read name
tel
(boolean
) - Has linked mobile
parent_control
(boolean
) - Has enabled parent control
cookies
(boolean
) - Login by cookies
lmin
(number
) - Minimum level in Overwatch
lmax
(number
) - Maximum level in Overwatch
balance_min
(number
) - Minimum balance
balance_max
(number
) - Maximum balance
service_id[]
(array
) - List of allowed VPN services
subscription_length
(number
) - Length of subscription
subscription_period
(string
) - In what notation is time measured
service_id[]
(array
) - List of allowed cinema services
subscription_length
(number
) - Length of subscription
subscription_period
(string
) - In what notation is time measured
autorenewal
(boolean
) - Is auto renewal enabled
country[]
(array
) - List of allowed countries
not_country[]
(array
) - List of disallowed countries
family
(boolean
) - Has family subscription
family_manager
(boolean
) - Has family manager permissions
family_member_count_min
(number
) - Minimum count of members in family
family_member_count_max
(number
) - Maximum count of members in family
subscription_length
(number
) - Length of subscription
subscription_period
(string
) - In what notation is time measured
recurring
(boolean
) - Is auto renewal enabled
trial
(boolean
) - Trial subscription
plan_name[]
(array
) - List of allowed plans
rank_min
(number
) - Minimum rank
rank_max
(number
) - Maximum rank
bonus_rank_min
(number
) - Minimum bonus rank
bonus_rank_max
(number
) - Maximum bonus rank
tel
(boolean
) - Has linked mobile
daybreak
(number
) - Number of days the account has been offline
brand
(boolean
) - Is brand account
monetization
(boolean
) - Has monetization
artist
(boolean
) - Has status artist
verified
(boolean
) - Has verified
password
(boolean
) - Has password
subscribes_min
(number
) - Minimum subscribes
subscribes_max
(number
) - Maximum subscribes
viewcount_min
(number
) - Minimum views count
viewcount_max
(number
) - Maximum views count
videocount_min
(number
) - Minimum video count
videocount_max
(number
) - Maximum video count
reg
(number
) - How old is the account
reg_period
(string
) - In what notation is time measured
locale[]
(array
) - List of regions
not_locale[]
(array
) - List of regions that won't be included
java
(boolean
) - Has java edition
bedrock
(boolean
) - Has bedrock edition
change_nickname
(boolean
) - Can change nickname
rank_hypixel[]
(string
) - Rank on hypixel
level_hypixel_min
(number
) - Minimum number of level hypixel
level_hypixel_max
(number
) - Maximum number of level hypixel
achievement_hypixel_min
(number
) - Minimum number of achievement hypixel
achievement_hypixel_max
(number
) - Maximum number of achievement hypixel
reg
(number
) - How old is the account
reg_period
(string
) - In what notation is time measured
last_login_hypixel
(number
) - How old is the last login account
last_login_hypixel_period
(string
) - In what notation is time measured