Get Collection Items
Return the list of inscriptions for a specific collection.
get
/v1/collection-indexer/collection/{collectionId}/items
Authorizations
Path parameters
collectionIdstringRequired
Query parameters
heightnumberOptional
startnumberRequired
limitnumberRequired
Responses
200
Default Response
application/json
get
/v1/collection-indexer/collection/{collectionId}/itemsGET /v1/collection-indexer/collection/{collectionId}/items?start=1&limit=1 HTTP/1.1
Host: open-api-fractal.unisat.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
Default Response
{
  "code": 1,
  "msg": "text",
  "data": {
    "total": 1,
    "list": [
      {
        "inscriptionId": "text",
        "collectionId": "text",
        "collectionItemName": "text",
        "inscriptionIndex": 1,
        "inscriptionNumber": 1,
        "inscriptionName": "text",
        "contentBody": "text",
        "contentLength": 1,
        "contentType": "text",
        "height": 1,
        "holders": 1,
        "totalItems": 1
      }
    ]
  }
}
Last updated