📈 Cryptocurrency Latest Trade Data API
Get the latest cryptocurrency trade data, including latest trade price, volume and other real-time trading information
🔗 API Information
| Item | Value |
|---|---|
| API Endpoint | https://api.dataapi.io/v1/crypto/latest_trade |
| Request Method | GET |
| Data Format | JSON |
📋 Request Parameters
Required Parameters ✅
| Parameter | Type | Description | Example |
|---|---|---|---|
ticker | string | Cryptocurrency symbol | BTCUSDT, ETHUSDT, ICXUSDT |
token | string | API access token | your_api_token |
📊 Response Parameters
Response Structure
| Field | Type | Description |
|---|---|---|
code | number | Response status code |
status | string | Response status |
message | string | Response message |
data | object | Trade data object |
Data Fields
| Field | Type | Description | Example |
|---|---|---|---|
ticker | string | Cryptocurrency symbol | BTCUSDT |
time | string | Trade timestamp | 2025-07-27 10:35:52 |
ticker | string | Trading pair symbol | BTCUSDT |
price | number | Latest trade price | 118225.44 |
volume | number | Trade volume | 8.37E-6 |
📈 Response Example
Success Response
{
"code": 200,
"status": "success",
"message": "ok",
"data": {
"ticker": "BTCUSDT",
"time": "2025-07-27 10:35:52",
"ticker": "BTCUSDT",
"price": 118225.44,
"volume": 8.37E-6
}
}🚀 Quick Start
Request Example
curl -X GET "https://api.dataapi.io/v1/crypto/latest_trade?ticker=BTCUSDT&token=your_token"