Get inscription count per block

Retrieves statistics on the number of inscriptions revealed per block.

GET

/ordinals/v1/stats/inscriptions

Retrieves statistics on the number of inscriptions revealed per block.

Query parameters

from_block_heightstring

Bitcoin block height

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

to_block_heightstring

Bitcoin block height

Pattern: "^[0-9]+$"
Status codeDescription
200Default response
404Default response
curl
curl -X GET "https://api.hiro.so/ordinals/v1/stats/inscriptions"
Example response
{
  "results": [
    {
      "block_height": "778921",
      "block_hash": "0000000000000000000452773967cdd62297137cdaf79950c5e8bb0c62075133",
      "inscription_count": "100",
      "inscription_count_accum": "3100",
      "timestamp": 1677733170000
    }
  ]
}