Blast JSON-RPC API

Ethereum-compatible JSON-RPC methods exposed by the Blast node.

Operations 1

POST / Invoke a JSON-RPC method #

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/blast-network-json-rpc-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

blast-network-json-rpc-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Blast Network JSON RPC API
  description: 'Public Ethereum-compatible JSON-RPC endpoint for the Blast Layer 2

    network (OP Stack derived). Mainnet is chain ID 81457 at

    https://rpc.blast.io; Sepolia testnet is chain ID 168587773 at

    https://sepolia.blast.io. This OpenAPI describes the JSON-RPC

    transport: all calls are HTTP POSTs to `/` with a JSON-RPC 2.0

    envelope and a method-specific `params` array.

    '
  version: '1.0'
  contact:
    name: Blast
    url: https://docs.blast.io
servers:
- url: https://rpc.blast.io
  description: Blast Mainnet (chain ID 81457)
- url: https://sepolia.blast.io
  description: Blast Sepolia Testnet (chain ID 168587773)
tags:
- name: JSON-RPC
  description: Ethereum-compatible JSON-RPC methods exposed by the Blast node.
paths:
  /:
    post:
      tags:
      - JSON-RPC
      summary: Invoke a JSON-RPC method
      description: 'Send any Ethereum-compatible JSON-RPC method (eth_, net_, web3_,

        debug_, trace_ where supported). Use the `method` field to

        select the call. Common methods include `eth_chainId`,

        `eth_blockNumber`, `eth_getBalance`, `eth_call`,

        `eth_estimateGas`, `eth_gasPrice`, `eth_getTransactionByHash`,

        `eth_getTransactionReceipt`, `eth_sendRawTransaction`,

        `eth_getLogs`, `eth_getBlockByNumber`, `eth_getBlockByHash`,

        `net_version`, `web3_clientVersion`.

        '
      operationId: jsonRpc
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JsonRpcRequest'
            examples:
              chainId:
                summary: Get chain ID
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: eth_chainId
                  params: []
              blockNumber:
                summary: Latest block number
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: eth_blockNumber
                  params: []
              getBalance:
                summary: Address balance at latest block
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: eth_getBalance
                  params:
                  - '0x0000000000000000000000000000000000000000'
                  - latest
      responses:
        '200':
          description: JSON-RPC response (either result or error).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonRpcResponse'
components:
  schemas:
    JsonRpcRequest:
      type: object
      required:
      - jsonrpc
      - method
      - id
      properties:
        jsonrpc:
          type: string
          const: '2.0'
        id:
          oneOf:
          - type: integer
          - type: string
        method:
          type: string
          example: eth_blockNumber
        params:
          type: array
          items: {}
          default: []
    JsonRpcResponse:
      type: object
      required:
      - jsonrpc
      - id
      properties:
        jsonrpc:
          type: string
          const: '2.0'
        id:
          oneOf:
          - type: integer
          - type: string
          - type: 'null'
        result:
          description: Method-specific result (present on success).
        error:
          type: object
          properties:
            code:
              type: integer
            message:
              type: string
            data:
              description: Optional error data.