Get Collections By Wallet

Get NFT collections owned by a given wallet address.

Get Collections By Wallet

get

Get NFT collections owned by a given wallet address.

Query parameters
cursorstringOptional

The cursor returned in the previous response (used for getting the next page).

Default: ""
limitintegerOptional

The desired page size of the result.

Default: 10
chainall ofRequired

The chain to query

string · enumOptional

An enumeration.

Possible values:
formatall ofOptional

The format of the token ID

Default: decimal
string · enumOptional

An enumeration.

Possible values:
addressstringRequired

The address

Responses
200
Successful Response
application/json
get
GET /api/collections/by_wallet?chain=eth&address=text HTTP/1.1
Host: 
Accept: */*
{
  "status": "SYNCED",
  "total": 0,
  "page": 0,
  "page_size": 0,
  "cursor": "",
  "result": [
    {
      "token_address": "text",
      "name": "",
      "symbol": "",
      "contract_type": "text"
    }
  ]
}

Last updated