Get Collection List By Address

Return the collection summary for the specified address.

get
Authorizations
Path parameters
addressstringrequired
Query parameters
heightnumberoptional
startnumberrequired
limitnumberrequired
Responses
curl -L \
  --url 'https://open-api-fractal.unisat.io/v1/collection-indexer/address/{address}/collection/list?start=1&limit=1' \
  --header 'Authorization: Bearer JWT'
{
  "code": 1,
  "msg": "text",
  "data": {
    "total": 1,
    "list": [
      {
        "count": 1,
        "name": "text",
        "iconInscription": "text",
        "iconUrl": "text",
        "iconContentType": "text",
        "supply": "text",
        "collectionId": "text",
        "desc": "text",
        "twitter": "text",
        "discord": "text",
        "website": "text"
      }
    ]
  }
}
Example

Last updated