Skip to main content
API referenceBlocks

Blocks

Every Blocks endpoint in the metagraphed API, with its method and path.

Last updated

13 endpoints.

  • Block Chain EventsGET /api/v1/blocks/{ref}/chain-events
    Fetch EVERY raw pallet-level event in one block (by numeric block_number; event_index ascending), served live from the live-follow hot tier above the decode seam and the chain_events lakehouse at or below it (no static file).
  • Block Chain Events By NetworkGET /api/v1/{network}/blocks/{ref}/chain-events
    Network-scoped form of /api/v1/blocks/{ref}/chain-events — prefix the route with a network to choose which chain answers it.
  • Block DetailGET /api/v1/blocks/{ref}
    Fetch per-block detail by numeric block_number or 0x block_hash.
  • Block Detail By NetworkGET /api/v1/{network}/blocks/{ref}
    Network-scoped form of /api/v1/blocks/{ref} — prefix the route with a network to choose which chain answers it.
  • Block EventsGET /api/v1/blocks/{ref}/events
    Fetch the ACCOUNT-ATTRIBUTED events in one block (by numeric block_number or 0x block_hash), in natural order; ?limit (<=1000) / ?offset.
  • Block Events By NetworkGET /api/v1/{network}/blocks/{ref}/events
    Network-scoped form of /api/v1/blocks/{ref}/events — prefix the route with a network to choose which chain answers it.
  • Block ExtrinsicsGET /api/v1/blocks/{ref}/extrinsics
    Fetch the extrinsics in one block (by numeric block_number or 0x block_hash), in natural order; ?limit (<=100) / ?offset.
  • Block Extrinsics By NetworkGET /api/v1/{network}/blocks/{ref}/extrinsics
    Network-scoped form of /api/v1/blocks/{ref}/extrinsics — prefix the route with a network to choose which chain answers it.
  • Blocks FeedGET /api/v1/blocks
    Fetch the recent-block feed (newest first) for the block explorer; ?limit (<=100) / ?offset, or ?cursor= for stable keyset paging under head-of-chain inserts (#1851).
  • Blocks Feed By NetworkGET /api/v1/{network}/blocks
    Network-scoped form of /api/v1/blocks — prefix the route with a network to choose which chain answers it.
  • Blocks SummaryGET /api/v1/blocks/summary
    Fetch block-production analytics over recent blocks: inter-block time distribution, extrinsic/event throughput, block-author decentralization (concentration over each author's block count), and the spec-version spread.
  • Blocks Summary By NetworkGET /api/v1/{network}/blocks/summary
    Network-scoped form of /api/v1/blocks/summary — prefix the route with a network to choose which chain answers it.
  • Runtime VersionsGET /api/v1/runtime
    Fetch the spec-version transition timeline — the earliest known block at each distinct runtime spec_version, ascending by block_number.