Inscriptions by Collection

This endpoint is commonly used to retrieve the list of inscriptions associated with an ordinal collection, together with their info and metadata.

get

Get inscriptions for an Ordinals collection.

Authorizations
Path parameters
collectionIdstringRequiredExample: {"value":"wzrds"}
Query parameters
offsetnumberOptionalDefault: 0
limitnumber Β· max: 25OptionalDefault: 10
Responses
200

Default Response

application/json
get
GET /v1/ordinals/collections/{collectionId}/inscriptions HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "collectionId": "text",
  "collectionName": "text",
  "total": 1,
  "offset": 1,
  "limit": 1,
  "inscriptions": [
    {
      "id": "text",
      "number": 1,
      "sat": 1,
      "contentType": "text",
      "blockHeight": 1,
      "charms": [
        "text"
      ]
    }
  ]
}

Last updated