Last Trade
Get last trade returns the most recent trade for a crypto pair.
Get Last Trade
GEThttps://api.adesic.com/v2/cex/{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 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
response.json
{
"exchange": "coinbasepro",
"market": "BTC/USD",
"id": "279363545",
"timestamp": "1644525461042",
"price": 43990.48,
"size": 0.00608355,
"cost": 267.618284604,
"side": "buy"
}Copy & Paste Code
cURL
cURL
curl -H "api-key: API KEY" https://api.adesic.com/v2/cex/coinbasepro/BTC-USD/lasttradeResponse Object
Example URL: https://api.adesic.com/v2/cex/coinbasepro/BTC-USD/lasttrade
response.json
{
"exchange": "coinbasepro",
"market": "BTC/USD",
"id": "279363545",
"timestamp": "1644525461042",
"price": 43990.48,
"size": 0.00608355,
"cost": 267.618284604,
"side": "buy"
}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. |