Skip to main content
GET
/
v1
/
chains
/
{chain_name}
/
collections
List all collections
curl --request GET \
  --url https://api.sandbox.immutable.com/v1/chains/{chain_name}/collections
{
  "result": [
    {
      "chain": {
        "id": "eip155:13372",
        "name": "imtbl-zkevm-testnet"
      },
      "name": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
      "symbol": "BASP",
      "contract_type": "ERC721",
      "contract_address": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
      "description": "Some description",
      "image": "https://some-url",
      "external_link": "https://some-url",
      "base_uri": "https://some-url",
      "verification_status": "verified",
      "indexed_at": "2022-08-16T17:43:26.991388Z",
      "updated_at": "2022-08-16T17:43:26.991388Z",
      "metadata_synced_at": "2022-08-16T17:43:26.991388Z",
      "contract_uri": "https://some-url"
    }
  ],
  "page": {
    "previous_cursor": "ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0=",
    "next_cursor": "ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0="
  }
}

Path Parameters

chain_name
string
required

The name of chain

Example:

"imtbl-zkevm-testnet"

Query Parameters

contract_address
string[]

List of contract addresses to filter by

verification_status
enum<string>[]

List of verification status to filter by

The verification status for a given contract

Available options:
verified,
unverified,
spam,
inactive
from_updated_at
string<date-time>

Datetime to use as the oldest updated timestamp

Example:

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

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

200 response

result
object[]
required

List of collections

page
object
required

Pagination properties