Skip to main content
POST
/
api
/
binance
/
tickers
/
book
/binance/tickers/book
curl --request POST \
  --url https://api.anysite.io/api/binance/tickers/book \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbols": [
    "<string>"
  ],
  "timeout": 300
}
'
[
  {
    "symbol": "<string>",
    "@type": "BinanceBookTicker",
    "bid_price": 123,
    "bid_qty": 123,
    "ask_price": 123,
    "ask_qty": 123
  }
]

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:BinanceBookTicker
bid_price
number | null
bid_qty
number | null
ask_price
number | null
ask_qty
number | null