Skip to main content
POST
/
api
/
binance
/
tickers
/
average
/binance/tickers/average
curl --request POST \
  --url https://api.anysite.io/api/binance/tickers/average \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "symbol": "<string>",
    "@type": "BinanceAveragePrice",
    "mins": 123,
    "price": 123,
    "close_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Trading pair symbol, uppercase, no separator

Examples:

"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:BinanceAveragePrice
mins
integer | null
price
number | null
close_at
integer | null