REST
Token Price
Latest USD and SOL price for a mint (Redis). Absent → 404.
GET
/v1/tokens/:mint/priceSee also: Stream equivalent
Request
curl "https://api.anaxer.com/v1/tokens/So11111111111111111111111111111111111111112/price" \
-H "Authorization: Bearer YOUR_KEY"Path parameters
| Name | Type | Description |
|---|---|---|
| mint | string | Token mint address. Example: So11111111111111111111111111111111111111112 |
Response
Example response body:
{
"type": "price",
"source": "pump_fun",
"mint": "So11111111111111111111111111111111111111112",
"price": {
"sol": 1,
"usd": 77.421875
},
"marketCapUsd": 48730000000,
"slot": 309812540,
"timestamp": 1751008872000
}Fields
Fields of the response body.
| Name | Type | Description |
|---|---|---|
| type | string | Always "price". |
| source | string | Venue the price came from. |
| mint | string | Token mint. |
| price | object | { sol, usd } — latest price in each unit. |
| marketCapUsd | number | Market capitalisation in USD. |
| slot | number | Solana slot the event landed in. Use for ordering and gap recovery. |
| timestamp | number | Event time as a Unix epoch millisecond value. |