Get satoshi inscriptions

Retrieves all inscriptions associated with a single satoshi.

GET

Parameters

Path Parameters

ordinal
REQUIRED
integer Ordinal number that uniquely identifies a satoshi

Query Parameters

offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
400Default Response
cURL
curl -L \
"https://api.hiro.so/ordinals/v1/sats/{ordinal}/inscriptions?offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"id": "string",
"number": 0,
"address": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"genesis_address": "string",
"genesis_block_height": 144000,
"genesis_block_hash": "string",
"genesis_tx_id": "string",
"genesis_fee": "string",
"genesis_timestamp": 0,
"tx_id": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"location": "string",
"output": "string",
"value": "string",
"offset": "string",
"sat_ordinal": "string",
"sat_rarity": "string",
"sat_coinbase_height": 144000,
"mime_type": "string",
"content_type": "string",
"content_length": 0,
"timestamp": 0,
"curse_type": "string",
"recursive": false,
"recursion_refs": [
"string"
]
}
]
}