Get inscription transfers

Retrieves all transfers for a single inscription.

GET

Parameters

Path Parameters

id
REQUIRED
string Inscription unique identifier (number or ID)

Query Parameters

offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
404Default Response
cURL
curl -L \
"https://api.hiro.so/ordinals/v1/inscriptions/{id}/transfers?offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"block_height": 144000,
"block_hash": "0x4839a8b01cfb39ffcc0d07d3db31e848d5adf5279d529ed5062300b9f353ff79",
"address": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"tx_id": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"location": "string",
"output": "string",
"value": "string",
"offset": "string",
"timestamp": 0
}
]
}