Skip to main content
POST
/
api
/
v1
/
developer
/
assets
/
batch
Get Assets Batch
curl --request POST \
  --url https://api.allium.so/api/v1/developer/assets/batch \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '[
  {
    "id": 123,
    "slug": "<string>",
    "chain": "<string>",
    "address": "<string>"
  }
]'
{
  "items": [
    {
      "id": 123,
      "slug": "<string>",
      "source": "<string>",
      "chain_specific_data": {},
      "name": "<string>",
      "symbol": "<string>",
      "image_url": "<string>",
      "circulating_supply": 123
    }
  ],
  "cursor": "<string>",
  "error": "<string>"
}
This endpoint returns assets by ID, slug, or (chain, address).
This is a beta endpoint currently under active development. We’re working to stabilize the API and will minimize breaking changes wherever possible, but they may still occur as we refine the interface.For production support or migration assistance, reach out at hello@allium.so.

Supported Chains

Authorizations

X-API-KEY
string
header
required

Body

application/json Β· AssetBatchRequest Β· object[]
id
integer | null
slug
string | null
chain
string | null
address
string | null

Response

Successful Response

items
AssetResponse Β· object[] | null
cursor
string | null
error
string | null