Skip to main content
POST
/
api
/
binance
/
symbols
/
search
/binance/symbols/search
curl --request POST \
  --url https://api.anysite.io/api/binance/symbols/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "base_asset": "BTC",
  "quote_asset": "USDT",
  "permission": "SPOT"
}
'
[
  {
    "symbol": "<string>",
    "@type": "BinanceSymbol",
    "status": "<string>",
    "base_asset": "<string>",
    "base_asset_precision": 123,
    "quote_asset": "<string>",
    "quote_asset_precision": 123,
    "base_commission_precision": 123,
    "quote_commission_precision": 123,
    "order_types": [],
    "iceberg_allowed": true,
    "oco_allowed": true,
    "oto_allowed": true,
    "opo_allowed": true,
    "quote_order_qty_market_allowed": true,
    "allow_trailing_stop": true,
    "cancel_replace_allowed": true,
    "amend_allowed": true,
    "peg_instructions_allowed": true,
    "spot_trading_allowed": true,
    "margin_trading_allowed": true,
    "default_self_trade_prevention_mode": "<string>",
    "allowed_self_trade_prevention_modes": [],
    "permissions": [],
    "permission_sets": [],
    "filters": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of trading pairs to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
base_asset
string | null

Filter by base asset, e.g. 'BTC', 'ETH'

Example:

"BTC"

quote_asset
string | null

Filter by quote asset, e.g. 'USDT', 'BTC'

Example:

"USDT"

status
enum<string> | null

Filter by trading status

Available options:
PRE_TRADING,
TRADING,
POST_TRADING,
END_OF_DAY,
HALT,
AUCTION_MATCH,
BREAK
permission
string | null

Filter by a supported permission, e.g. 'SPOT', 'MARGIN', 'LEVERAGED'

Example:

"SPOT"

Response

Successful Response

symbol
string
required
@type
string
default:BinanceSymbol
status
string | null
base_asset
string | null
base_asset_precision
integer | null
quote_asset
string | null
quote_asset_precision
integer | null
base_commission_precision
integer | null
quote_commission_precision
integer | null
order_types
string[]
iceberg_allowed
boolean | null
oco_allowed
boolean | null
oto_allowed
boolean | null
opo_allowed
boolean | null
quote_order_qty_market_allowed
boolean | null
allow_trailing_stop
boolean | null
cancel_replace_allowed
boolean | null
amend_allowed
boolean | null
peg_instructions_allowed
boolean | null
spot_trading_allowed
boolean | null
margin_trading_allowed
boolean | null
default_self_trade_prevention_mode
string | null
allowed_self_trade_prevention_modes
string[]
permissions
string[]
permission_sets
string[][]
filters
object[]