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
Unique exchange identifier used by Abyiss.
Unique Crypto Pair identifier used by the exchange.
Query Parameters
{
"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
},
]
}
}
{
"Unauthorized": "Invaild API Key"
}
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
{
"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
},
{
"Unauthorized": "Invaild API Key"
}
Get Whales Recent
GET
https://api.abyiss.com/v2/analytics/whales/recent
Returns an object containing the most recent large crypto trades.
Query Parameters
{
"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
},
{
"Unauthorized": "Invaild API Key"
}
Copy & Paste Code
curl -H "apiKey: API KEY" https://api.abyiss.com/v2/analytics/whales/coinbasepro/btc-usd
import urllib.request
url = "https://api.abyiss.com/v2/analytics/whales/coinbasepro/btc-usd?apiKey=*"
print(urllib.request.urlopen(url).read())
fetch("https://api.abyiss.com/v2/analytics/whales/coinbasepro/btc-usd?apiKey=*")
.then(response => response.json())
.then(data => console.log(data))
require('axios')
.get("https://api.abyiss.com/v2/analytics/whales/coinbasepro/btc-usd?apiKey=*")
.then(response => console.log(response))
require 'net/http'
uri = URI("https://api.abyiss.com/v2/analytics/whales/coinbasepro/btc-usd?apiKey=*")
puts Net::HTTP.get(uri)
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
},
]
}
}
Example URL: https://api.abyiss.com/v2/analytics/whales/today?apiKey=
{
"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
},
Example URL: https://api.abyiss.com/v2/analytics/whales/recent?apiKey=
{
"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
},
Response Attributes
Attribute Name
Data Type
Description
Unique identifier used by the exchange for ticker.
The base of the market. eg: The quantity that is bought.
The quote of the market. eg: The currency being compared.
The quote cost: (size * price).
The exchange specific unique id of the trade.
Unique identifier used by the exchange for trade.
Unix timestamp of the trade.
The price the trade was executed at.
Whether the trade was a buy or sell.