Skip to main content
GET
/
v1
/
chains
/
{chain_name}
/
tokens
List ERC20 tokens
curl --request GET \
  --url https://api.sandbox.immutable.com/v1/chains/{chain_name}/tokens
{
  "result": [
    {
      "chain": {
        "id": "eip155:13372",
        "name": "imtbl-zkevm-testnet"
      },
      "contract_address": "0xc344c05eef8876e517072f879dae8905aa2b956b",
      "root_contract_address": "0x43e60b30d5bec48c0f5890e3d1e9f1b1296bb4aa",
      "symbol": "AAA",
      "decimals": 18,
      "image_url": "https://some-url",
      "name": "Token A",
      "verification_status": "verified",
      "updated_at": "2022-08-16T17:43:26.991388Z",
      "is_canonical": true,
      "root_chain_id": "eip155:1",
      "bridge_used": "axelar"
    }
  ],
  "page": {
    "previous_cursor": "ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0=",
    "next_cursor": "ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0="
  }
}

Path Parameters

chain_name
string
required

The name of chain

Example:

"imtbl-zkevm-testnet"

Query Parameters

from_updated_at
string<date-time>

Datetime to use as the oldest updated timestamp

Example:

"2022-08-16T17:43:26.991388Z"

verification_status
enum<string>[]

List of verification status to filter by

The verification status for a given contract

Available options:
verified,
unverified,
spam,
inactive
is_canonical
boolean

[Experimental - Canonical token data may be updated] Filter by canonical or non-canonical tokens.

page_cursor
string

Encoded page cursor to retrieve previous or next page. Use the value returned in the response.

Example:

"ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0="

page_size
integer<int32>
default:100

Maximum number of items to return

Required range: 1 <= x <= 200
Example:

10

Response

OK

result
object[]
required

List of tokens

page
object
required

Pagination properties