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