Whales
Get whales returns large crypto trades for a crypto pair from an exchange.
Get Whales
GEThttps://api.adesic.com/v2/analytics/whales/{exchange}/{market}
Returns an object containing large crypto trades for a crypto pair on an exchange.
Path Parameters
| Name | Type | Description |
|---|---|---|
| exchange* | string | Unique exchange identifier used by Adesic. |
| market* | string | Unique Crypto Pair identifier used by the exchange. |
Query Parameters
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
success-response.json
{
"name": "BTC-USD",
"exchangeId": "coinbasepro",
"base": "BTC",
"quote": "USD",
"whales": {
"nodes": [
{
"cost": 220116.966516,
"id": 18332,
"idOnExchange": "456861288",
"insertedAt": "2022-11-17T15:49:18.878",
"price": 16560,
"side": "buy",
"size": 13.29208735
},
]
}
}Get Whales Today
GEThttps://api.adesic.com/v2/analytics/whales/today
Returns an object containing the most recent or newest top 50 large crypto trades within the last 24 hours. Resets every day.
Query Parameters
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
success-response.json
{
"cost": 313438.248,
"id": 18336,
"idOnExchange": "1025921603",
"insertedAt": "2022-11-18T05:21:40.879",
"market": {
"name": "ETH-USDT",
"exchangeId": "binance",
"base": "ETH",
"quote": "USDT"
},
"price": 1224,
"side": "sell",
"size": 256.077
},Get Whales Recent
GEThttps://api.adesic.com/v2/analytics/whales/recent
Returns an object containing the most recent large crypto trades.
Query Parameters
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
success-response.json
{
"cost": 313438.248,
"id": 18336,
"idOnExchange": "1025921603",
"insertedAt": "2022-11-18T05:21:40.879",
"market": {
"name": "ETH-USDT",
"exchangeId": "binance",
"base": "ETH",
"quote": "USDT"
},
"price": 1224,
"side": "sell",
"size": 256.077
},Copy & Paste Code
cURL
curl-request.sh
curl -H "api-key: API KEY" https://api.adesic.com/v2/analytics/whales/coinbasepro/btc-usdResponse Object
Whales
Example URL: https://api.adesic.com/v2/analytics/whales/coinbasepro/btc-usd
whales-response.json
{
"name": "BTC-USD",
"exchangeId": "coinbasepro",
"base": "BTC",
"quote": "USD",
"whales": {
"nodes": [
{
"cost": 220116.966516,
"id": 18332,
"idOnExchange": "456861288",
"insertedAt": "2022-11-17T15:49:18.878",
"price": 16560,
"side": "buy",
"size": 13.29208735
},
]
}
}Response Attributes
| Attribute Name | Data Type | Description |
|---|---|---|
| name | string | Unique identifier used by the exchange for ticker. |
| exchangeId | string | The exchange id. |
| base | string | The base of the market. eg: The quantity that is bought. |
| quote | string | The quote of the market. eg: The currency being compared. |
| cost | float | The quote cost: (size * price). |
| id | integer | The exchange specific unique id of the trade. |
| idOnExchange | string | Unique identifier used by the exchange for trade. |
| insertedAt | string | Unix timestamp of the trade. |
| price | float | The price the trade was executed at. |
| side | string | Whether the trade was a buy or sell. |
| size | float | The quantity traded. |