REST

Token Metadata (Batch)

Up to 50 unique mints in one request. Each unique mint counts as one request against your monthly quota; the call counts as 1 against the per-minute burst limit (see X-Request-Cost). Never-observed mints are omitted. Missing/incomplete observed mints resolve on demand in a single upstream batch. Same lean shape as the single-mint endpoint. No next or window.

GET/v1/tokens/batch

Request

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

Query parameters

NameTypeDescription
mintsstringComma-separated mint addresses (required, max 50 unique; duplicates do not count against the cap). Example: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn,2ajrYELtYtvtJd8fQAGXpfQbgXXZe3YjPtNJ9K3bpump

Response

Example response body:

{
  "data": [
    {
      "mint": "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn",
      "name": "Pump",
      "symbol": "PUMP",
      "supply": "999975007.8481",
      "socials": {
        "website": "https://pump.fun",
        "twitter": "https://x.com/pumpfun",
        "telegram": "https://t.me/pumpfun"
      }
    }
  ]
}

Fields

Fields of the response body.

NameTypeDescription
mintstringToken mint address.
namestringToken name.
symbolstringToken symbol.
supplystringTotal supply as a UI-decimal string.
socialsobject | nullwebsite / twitter / telegram when known.