π¨Inscriptions of a Collection
get
Get inscriptions owned by an address in a specific collection. It includes current inscription location
Authorizations
Path parameters
addressstring Β· BitcoinAddress Β· min: 10RequiredDefault:
bc1q0egjvlcfq77cxd9kvpgppyuxckzvws46e3sxch
collectionIdstringRequiredExample:
{"value":"wzrds"}
Query parameters
offsetnumberOptionalDefault:
0
limitnumber Β· min: 25 Β· max: 25OptionalDefault:
25
Responses
200
Inscriptions for a specific collection owned by an address
application/json
400
Invalid input
application/json
401
Unauthorized
application/json
404
Not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
get
GET /v1/ordinals/address/{address}/inscriptions/collection/{collectionId} 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"
],
"currentLocation": "text"
}
]
}
Last updated