Get inscriptions

Retrieves a list of inscriptions with options to filter and sort results.

GET

/ordinals/v1/inscriptions

Retrieves a list of inscriptions with options to filter and sort results.

Query parameters

genesis_blockAny properties in string, string

Bitcoin block identifier (height or hash)

from_genesis_block_heightstring

Bitcoin block height

Pattern: "^[0-9]+$"

to_genesis_block_heightstring

Bitcoin block height

Pattern: "^[0-9]+$"

from_genesis_timestampinteger

Block UNIX epoch timestamp (milliseconds)

to_genesis_timestampinteger

Block UNIX epoch timestamp (milliseconds)

from_sat_ordinalinteger

Ordinal number that uniquely identifies a satoshi

Minimum: 0

to_sat_ordinalinteger

Ordinal number that uniquely identifies a satoshi

Minimum: 0

from_sat_coinbase_heightstring

Bitcoin block height

Pattern: "^[0-9]+$"

to_sat_coinbase_heightstring

Bitcoin block height

Pattern: "^[0-9]+$"

from_numberinteger

Inscription number

to_numberinteger

Inscription number

idarray of string

Array of inscription IDs

numberarray of integer

Array of inscription numbers

outputstring

An UTXO for a Bitcoin transaction

Pattern: "^[a-fA-F0-9]{64}:[0-9]+$"

addressarray of string

Array of Bitcoin addresses

genesis_addressarray of string

Array of Bitcoin addresses

mime_typearray of string

Array of inscription MIME types

rarityarray of Any properties in string, string, string, string, string, string

Array of satoshi rarity values

recursiveboolean

Whether or not the inscription is recursive

cursedboolean

Whether or not the inscription is cursed

offsetinteger

Result offset

Minimum: 0

limitinteger

Results per page

Minimum: 1Maximum: 60

order_byAny properties in string, string, string, string

Parameter to order results by

orderAny properties in string, string

Results order

Status codeDescription
200Default response
404Default response
curl
curl -X GET "https://api.hiro.so/ordinals/v1/inscriptions"
Example response
{
  "limit": 20,
  "offset": 0,
  "total": 1,
  "results": [
    {
      "id": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218i0",
      "number": 248751,
      "address": "bc1pvwh2dl6h388x65rqq47qjzdmsqgkatpt4hye6daf7yxvl0z3xjgq247aq8",
      "genesis_address": "bc1pvwh2dl6h388x65rqq47qjzdmsqgkatpt4hye6daf7yxvl0z3xjgq247aq8",
      "genesis_block_height": 778921,
      "genesis_block_hash": "0000000000000000000452773967cdd62297137cdaf79950c5e8bb0c62075133",
      "genesis_tx_id": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218",
      "genesis_fee": "3179",
      "genesis_timestamp": 0,
      "tx_id": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218",
      "location": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218:0:0",
      "output": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218:0",
      "value": "546",
      "offset": "0",
      "sat_ordinal": "1232735286933201",
      "sat_rarity": "common",
      "sat_coinbase_height": 430521,
      "mime_type": "text/plain",
      "content_type": "text/plain;charset=utf-8",
      "content_length": 59,
      "timestamp": 1677733170000,
      "curse_type": "p2wsh",
      "recursive": true,
      "recursion_refs": [
        "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218i0"
      ]
    }
  ]
}