Whales
Get whales returns large crypto trades for a crypto pair from an exchange.
The whales
endpoint is in beta. We do not recommend use in production.
Get Whales
GET
https://api.abyiss.com/v2/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 Abyiss. |
market* | string | Unique Crypto Pair identifier used by the exchange. |
Query Parameters
Name | Type | Description |
---|---|---|
apiKey* | string | Your Abyiss API Key |
Get Whales Today
GET
https://api.abyiss.com/v2/whales/today
Returns an object containing the most recent or newest top 50 large crypto trades within the day.
Query Parameters
Name | Type | Description |
---|---|---|
apiKey* | string | Your Abyiss API Key |
Copy & Paste Code
Response Object
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 | 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