Get transfers per block

Retrieves a list of inscription transfers that ocurred at a specific Bitcoin block.

GET
/ordinals/v1/inscriptions/transfers

Transfers per block

Retrieves a list of inscription transfers that ocurred at a specific Bitcoin block

Query Parameters

block
Required
Block Identifier

Bitcoin block identifier (height or hash)

offsetOffset

Result offset

Minimum: 0

limitLimit

Results per page

Minimum: 1Maximum: 60
Status codeDescription
200Default Response
404Default Response
/ordinals/v1/inscriptions/transfers

curl -X GET "https://api.hiro.so/ordinals/v1/inscriptions/transfers?block=0000000000000000000452773967cdd62297137cdaf79950c5e8bb0c62075133&offset=0&limit=1"

{
  "limit": 20,
  "offset": 0,
  "total": 1,
  "results": [
    {
      "id": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218i0",
      "number": 248751,
      "from": {
        "block_height": 778921,
        "block_hash": "0000000000000000000452773967cdd62297137cdaf79950c5e8bb0c62075133",
        "address": "bc1pvwh2dl6h388x65rqq47qjzdmsqgkatpt4hye6daf7yxvl0z3xjgq247aq8",
        "tx_id": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218",
        "location": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218:0:0",
        "output": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218:0",
        "value": "546",
        "offset": "0",
        "timestamp": 1677733170000
      },
      "to": {
        "block_height": 778921,
        "block_hash": "0000000000000000000452773967cdd62297137cdaf79950c5e8bb0c62075133",
        "address": "bc1pvwh2dl6h388x65rqq47qjzdmsqgkatpt4hye6daf7yxvl0z3xjgq247aq8",
        "tx_id": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218",
        "location": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218:0:0",
        "output": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218:0",
        "value": "546",
        "offset": "0",
        "timestamp": 1677733170000
      }
    }
  ]
}