REST

Token Price

Current USD and SOL price for any mint.

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

Query parameters

No query parameters for this endpoint.

Response

Example response body:

{
  "type": "price",
  "mint": "So11111111111111111111111111111111111111112",
  "tokenSupply": "629461548.6865851",
  "decimals": 9,
  "price": {
    "sol": 1,
    "usd": 77.421875
  },
  "liquiditySol": "28473829.880",
  "slot": 309812540,
  "timestamp": "2026-06-27T07:21:12Z"
}