Skip to main content
POST
/
api
/
v1
/
developer
/
tokens
/
chain-address
Get Tokens
curl --request POST \
  --url https://api.allium.so/api/v1/developer/tokens/chain-address \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '[
  {
    "chain": "string",
    "token_address": "string"
  }
]'
[
  {
    "object": "token",
    "chain": "<string>",
    "address": "<string>",
    "price": 123,
    "decimals": 123,
    "info": {
      "name": "<string>",
      "symbol": "<string>"
    },
    "attributes": {
      "total_supply": 123,
      "fully_diluted_valuation_usd": 123
    }
  }
]
This endpoint returns detailed token information for specific token addresses. Use query parameters to request additional attributes.
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 · PayloadTokenAddress · object[]
token_address
string
required
chain
string
required

Response

Successful Response

chain
string
required
address
string
required
object
string
default:token
Allowed value: "token"
price
number | null
decimals
integer | null
info
object | null
attributes
object | null
I