REST

Token Price

Latest USD and SOL price for a mint (Redis). Absent → 404.

GET/v1/tokens/:mint/price

Request

curl "https://api.anaxer.com/v1/tokens/So11111111111111111111111111111111111111112/price" \
  -H "Authorization: Bearer YOUR_KEY"

Path parameters

NameTypeDescription
mintstringToken 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.

NameTypeDescription
typestringAlways "price".
sourcestringVenue the price came from.
mintstringToken mint.
priceobject{ sol, usd } — latest price in each unit.
marketCapUsdnumberMarket capitalisation in USD.
slotnumberSolana slot the event landed in. Use for ordering and gap recovery.
timestampnumberEvent time as a Unix epoch millisecond value.