Whales
Get whales returns large crypto trades for a crypto pair from an exchange.
Get Whales
GET
https://api.abyiss.com/v2/analytics/whales/{exchange}/{market}
Returns an object containing large crypto trades for a crypto pair on an exchange.
Path Parameters
exchange*
string
Unique exchange identifier used by Abyiss.
market*
string
Unique Crypto Pair identifier used by the exchange.
Query Parameters
apiKey*
string
Your Abyiss API Key
{
"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
GET
https://api.abyiss.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
apiKey*
string
Your Abyiss API Key
{
"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
GET
https://api.abyiss.com/v2/analytics/whales/recent
Returns an object containing the most recent large crypto trades.
Query Parameters
apiKey*
string
Your Abyiss API Key
{
"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 -H "apiKey: API KEY" https://api.abyiss.com/v2/analytics/whales/coinbasepro/btc-usd
Response Object
Example URL: https://api.abyiss.com/v2/analytics/whales/coinbasepro/btc-usd?apiKey=
{
"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
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
integer
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
integer
The price the trade was executed at.
side
string
Whether the trade was a buy or sell.
size
integer
The quantity traded.
Last updated
Was this helpful?