Get Token Price
1. Overview & Typical Use
Returns current price information for a specified token, including USD and TRX pricing, 24-hour change, market cap, and trading volume.
- Typical use: real-time quote display, price monitoring, exchange rate conversion.
- When not to use: for batch token prices use “Get Token List with Prices”.
2. Endpoint & Authentication
GET /api/token/price
For Base URL and authentication, see Common Network & Authentication.
This endpoint requires an API Key; calls without a Key return 401.
3. Request
Fields
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
token | string | No | trx | Token abbreviation |
4. Response
Fields
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
token | string | Required | Token abbreviation | — |
price_in_trx | string | Required | TRX-denominated price | — |
price_in_usd | string | Required | USD-denominated price | — |
percent_change_24h | string | Required | 24-hour price change percentage | percent |
volume_percent_change_24h | string | Required | 24-hour trading volume change percentage | percent |
market_cap | string | Required | Market cap (USD) | — |
market_cap_percent_change_24h | string | Required | 24-hour market cap change percentage | percent |
volume_24h | string | Required | 24-hour trading volume (USD) | — |
rank | integer | Required | Token market cap rank | — |
from | string | Required | Data source | — |
time | integer | Required | Data timestamp | Millisecond timestamp |
5. Errors
For HTTP status codes, see Common Errors. Key points for this endpoint:
- API Key Required: returns 401 if not provided.
- When
tokendoes not exist, an empty response is returned.
Last updated on: