Skip to main content
POST
/
api
/
v2
/
tokens
/
batch
POST /api/v2/tokens/batch — Get multiple tokens in one call
curl --request POST \
  --url https://api.shuriken.trade/api/v2/tokens/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tokens": [
    "<string>"
  ]
}
'
{
  "data": {
    "notFound": [
      "<string>"
    ],
    "tokens": [
      {
        "address": "<string>",
        "chain": "<string>",
        "decimals": 1,
        "name": "<string>",
        "symbol": "<string>",
        "tokenId": "<string>"
      }
    ],
    "errors": [
      "<string>"
    ],
    "invalid": [
      "<string>"
    ]
  },
  "requestId": "<string>",
  "pagination": {
    "hasMore": true,
    "limit": 1,
    "page": 1,
    "total": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.shuriken.trade/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <jwt> for user auth or Authorization: Bearer sk_{keyId}_{secret} for API key auth.

Body

application/json

POST /api/v2/tokens/batch request body

tokens
string[]
required

List of token IDs in "chain:address" format (max 100)

Response

Batch token results

V2 success response envelope

data
object
required
requestId
string
required
pagination
object

Page-based pagination info (per RFC)