API Reference
Binance Proxy
Binance-compatible API proxy for exchange operations
Get Exchange Info
Query Parameters
quote?|
Quote currency filter (defaults to exchange native)
exchange?string
Exchange: 'binanceus' (Binance US) or 'binance' (Binance Global)
Default
"binanceus"Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/exchange-info"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Klines
Query Parameters
symbol*string
Trading symbol (e.g., BTCUSD)
interval?string
Kline interval (e.g., 1m, 5m, 1h, 1d)
Default
"1h"limit?integer
Number of klines
Default
100Range
1 <= value <= 1000exchange?string
Exchange: 'binanceus' (Binance US) or 'binance' (Binance Global)
Default
"binanceus"Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/klines?symbol=string"[
[
null
]
]{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Orderbook
Query Parameters
symbol*string
Trading symbol (e.g., BTCUSD)
limit?integer
Order book depth
Default
20Range
5 <= value <= 100exchange?string
Exchange: 'binanceus' (Binance US) or 'binance' (Binance Global)
Default
"binanceus"Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/orderbook?symbol=string"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Ticker
Query Parameters
symbol?|
Trading symbol (optional)
type?string
Ticker type: 24hr or price
Default
"24hr"exchange?string
Exchange: 'binanceus' (Binance US) or 'binance' (Binance Global)
Default
"binanceus"Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/ticker"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Account
Authorization
HTTPBearer AuthorizationBearer <token>
In: header
Response Body
application/json
curl -X GET "https://loading/api/v1/account"{}