Last Trade
Get last trade returns the most recent trade for a crypto pair.
Get Last Trade
GET
https://api.abyiss.com/v1/{exchange}/{market}/lasttrade
Returns an object containing the latest trade 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 |
Copy & Paste Code
Response Object
Example URL: https://api.abyiss.com/v1/coinbasepro/BTC-USD/lasttrade?apiKey=
Response Attributes
Attribute Name | Data Type | Description |
---|---|---|
exchange | string | The exchange id the trade occurred on. |
market | string | The crypto pair that was traded. |
id | string | The exchange specific unique id of the trade. |
timestamp | string | The Unix timestamp that trade was executed. |
price | float | The quote currency price of the market. |
size | float | The quantity traded. |
cost | float | The quote cost: (size * price). |
side | string | Whether the trade was a buy or sell. |
Last updated