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/batchRequest
curl "https://api.anaxer.com/v1/tokens/batch?mints=pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn%2C2ajrYELtYtvtJd8fQAGXpfQbgXXZe3YjPtNJ9K3bpump" \
-H "Authorization: Bearer YOUR_KEY"Query parameters
| Name | Type | Description |
|---|---|---|
| mints | string | Comma-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.
| Name | Type | Description |
|---|---|---|
| mint | string | Token mint address. |
| name | string | Token name. |
| symbol | string | Token symbol. |
| supply | string | Total supply as a UI-decimal string. |
| socials | object | null | website / twitter / telegram when known. |