Skip to main content
POST
/
api
/
binance
/
symbols
/binance/symbols
curl --request POST \
  --url https://api.anysite.io/api/binance/symbols \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbols": [
    "<string>"
  ],
  "timeout": 300
}
'
[
  {
    "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
symbols
string[]
required

Trading pair symbols, uppercase, no separator

Minimum array length: 1
Example:
["BTCUSDT", "ETHUSDT"]
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

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[]