Skip to main content
GET
/
api
/
v1
/
developer
/
assets
List Assets
curl --request GET \
  --url https://api.allium.so/api/v1/developer/assets \
  --header 'X-API-KEY: <api-key>'
{
  "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.
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

Query Parameters

cursor
string

Cursor for pagination

limit
integer
default:100

Number of results per page

Required range: 1 <= x <= 10000

Response

Successful Response

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