Arweave Blocks API

Endpoints for retrieving block data

Operations 2

GET /block/hash/{id} Get block by hash #
GET /block/height/{height} Get block by height #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/arweave-blocks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

arweave-blocks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arweave HTTP Node Blocks API
  description: 'The core Arweave node REST API for submitting and retrieving transactions, uploading data chunks, querying wallet balances, fetching blocks, and inspecting network state. Requests target any Arweave node on port 1984 (default gateway arweave.net). Amounts are denominated in winstons (1 AR = 10^12 winstons).

    '
  version: 1.0.0
  contact:
    name: Arweave Team
    url: https://www.arweave.org/
    email: team@arweave.org
  termsOfService: https://www.arweave.org/legal/terms-of-use
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
- url: https://arweave.net
  description: Arweave public gateway
- url: http://localhost:1984
  description: Local Arweave node (default port 1984)
tags:
- name: Blocks
  description: Endpoints for retrieving block data
paths:
  /block/hash/{id}:
    get:
      operationId: getBlockByHash
      summary: Get block by hash
      description: 'Retrieve a full block object by its independent hash (indep_hash). Include the header X-Block-Format: 2 to request the v2 block format.

        '
      tags:
      - Blocks
      parameters:
      - name: id
        in: path
        required: true
        description: Block independent hash (indep_hash, Base64URL encoded)
        schema:
          type: string
      responses:
        '200':
          description: Block returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Block'
        '404':
          description: Block not found
  /block/height/{height}:
    get:
      operationId: getBlockByHeight
      summary: Get block by height
      description: 'Retrieve a full block object by its block height (block number). Include the header X-Block-Format: 2 to request the v2 block format.

        '
      tags:
      - Blocks
      parameters:
      - name: height
        in: path
        required: true
        description: Block height (block number, 0-indexed)
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Block returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Block'
        '404':
          description: Block not found
components:
  schemas:
    Block:
      type: object
      description: An Arweave block
      properties:
        nonce:
          type: string
          description: Block nonce used in proof of work
        previous_block:
          type: string
          description: Hash of the previous block (indep_hash)
        timestamp:
          type: integer
          description: Unix timestamp of the block
        diff:
          type: string
          description: Mining difficulty at the time of the block
        height:
          type: integer
          description: Block height
        hash:
          type: string
          description: Mining hash of the block
        indep_hash:
          type: string
          description: Independent hash uniquely identifying the block
        txs:
          type: array
          description: List of transaction IDs in the block
          items:
            type: string
        wallet_list:
          type: string
          description: Hash of the wallet list merkle tree
        reward_addr:
          type: string
          description: Wallet address of the miner who found this block
        reward_pool:
          type: string
          description: Current mining reward pool size in winstons
        weave_size:
          type: string
          description: Total size of the weave in bytes at this block
        block_size:
          type: string
          description: Size of all transaction data in this block in bytes
        cumulative_diff:
          type: string
          description: Cumulative mining difficulty up to this block
        hash_list_merkle:
          type: string
          description: Merkle root of the block hash list
        poa:
          type: object
          description: Proof of access data
          properties:
            option:
              type: string
            tx_path:
              type: string
            data_path:
              type: string
            chunk:
              type: string
externalDocs:
  description: Arweave HTTP API Documentation
  url: https://docs.arweave.org/developers/arweave-node-server/http-api