REST

Token Price (Batch)

Up to 30 mints. Missing prices are omitted (not errored). Same PriceUpdateV1 shape as the single-mint endpoint. No next or window.

GET/v1/tokens/batch/price

Request

curl "https://api.anaxer.com/v1/tokens/batch/price?mints=So11111111111111111111111111111111111111112%2CEKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm" \
  -H "Authorization: Bearer YOUR_KEY"

Path parameters

No path parameters for this endpoint.

Query parameters

NameTypeDescription
mintsstringComma-separated mint addresses (required, max 30). Example: So11111111111111111111111111111111111111112,EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm

Response

Example response body:

{
  "data": [
    {
      "type": "price",
      "source": "pump_fun",
      "mint": "So11111111111111111111111111111111111111112",
      "price": {
        "sol": 1,
        "usd": 77.421875
      },
      "marketCapUsd": 48730000000,
      "slot": 309812540,
      "timestamp": 1751008872000
    }
  ]
}