CoinGecko
Spot
/api/marketdata/coingecko/pairs
GET
Responses
Code | Description |
---|---|
200 | Success |
/api/marketdata/coingecko/tickers
GET
Responses
Code | Description |
---|---|
200 | Success |
/api/marketdata/coingecko/orderbook
GET
Parameters
Name | Located in | Description | Required | Schema |
---|---|---|---|---|
ticker_id | query | No | string | |
depth | query | No | integer |
Responses
Code | Description |
---|---|
200 | Success |
/api/marketdata/coingecko/historical_trades
GET
Parameters
Name | Located in | Description | Required | Schema |
---|---|---|---|---|
ticker_id | query | No | string | |
type | query | No | string | |
limit | query | No | integer | |
start_time | query | No | dateTime | |
end_time | query | No | dateTime |
Responses
Code | Description |
---|---|
200 | Success |
FUTURES
GET https://futures.azbit.com/api/external-providers/coingecko/contracts
Summary:
Get contracts info
Response model
{
"BTCUSDT": [
{
"ticker_id": "TONUSDT",
"base_currency": "TON",
"target_currency": "USDT",
"last_price": 4.8681,
"base_volume": 201490.94170597687,
"target_volume": 971660.649433,
"bid": 4.8681,
"ask": 4.8688,
"high": 4.892,
"low": 4.7803,
"product_type": "Perpetual",
"open_interest": 16304177.2,
"index_price": 4.874,
"index_currency": 0,
"start_timestamp": null,
"end_timestamp": null,
"funding_rate": 0.00005,
"next_funding_rate": 0.00005,
"next_funding_rate_timestamp": 1738324800000,
"contract_type": "Inverse",
"contract_price": 0.1,
"contract_price_currency": "USDT"
}
]
}
Response codes
Code | Description |
---|---|
200 | Success |
GET https://futures.azbit.com/api/external-providers/coingecko/orderbook
Summary:
Orderbooks
Response model
{
"ticker_id": "NEARUSDT",
"bids": [
{
"price": 4.732,
"quantity": 253.6
}
],
"asks": [
{
"price": 4.732,
"quantity": 253.6
}
]
}
Response codes
Code | Description |
---|---|
200 | Success |