Arbitrum JSON-RPC API

Ethereum-compatible JSON-RPC 2.0 endpoint

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/arbitrum-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

arbitrum-json-rpc-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arbitrum JSON RPC API
  version: 1.0.0
  summary: Best-effort OpenAPI for the public Arbitrum JSON-RPC endpoints.
  description: 'Public JSON-RPC endpoints for the Arbitrum One, Arbitrum Nova, and Arbitrum

    Sepolia chains. The Arbitrum chains implement the standard Ethereum JSON-RPC

    interface (eth_*, net_*, web3_*) and add Arbitrum-specific precompiles and

    extended methods (arb_*, arbtrace_*, debug_*).


    All requests are POST with a JSON body following the JSON-RPC 2.0 envelope.

    Public RPC endpoints do not support WebSockets and IPv6 is not supported.

    Sequencer-only endpoints accept only eth_sendRawTransaction and

    eth_sendRawTransactionConditional.


    This spec is a best-effort generation from public docs. See

    https://docs.arbitrum.io/build-decentralized-apps/reference/node-providers

    for the source list.

    '
  contact:
    name: Offchain Labs / Arbitrum Foundation
    url: https://docs.arbitrum.io/
servers:
- url: https://arb1.arbitrum.io/rpc
  description: Arbitrum One mainnet (chain ID 42161)
- url: https://nova.arbitrum.io/rpc
  description: Arbitrum Nova mainnet (chain ID 42170)
- url: https://sepolia-rollup.arbitrum.io/rpc
  description: Arbitrum Sepolia testnet (chain ID 421614)
security: []
tags:
- name: JSON-RPC
  description: Ethereum-compatible JSON-RPC 2.0 endpoint
paths:
  /:
    post:
      tags:
      - JSON-RPC
      summary: Invoke a JSON-RPC method
      description: 'Single entry point for all JSON-RPC calls. The HTTP body is a JSON-RPC 2.0

        request object (or a batch array). Common Ethereum methods include

        eth_blockNumber, eth_chainId, eth_getBalance, eth_getTransactionByHash,

        eth_getTransactionReceipt, eth_call, eth_estimateGas,

        eth_sendRawTransaction, eth_getLogs. Arbitrum-specific methods include

        arb_getL1Confirmations and various nodeinterface precompile calls.

        '
      operationId: jsonRpcCall
      requestBody:
        required: true
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/JsonRpcRequest'
              - type: array
                items:
                  $ref: '#/components/schemas/JsonRpcRequest'
            examples:
              blockNumber:
                summary: eth_blockNumber
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: eth_blockNumber
                  params: []
              chainId:
                summary: eth_chainId
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: eth_chainId
                  params: []
              getBalance:
                summary: eth_getBalance
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: eth_getBalance
                  params:
                  - '0x0000000000000000000000000000000000000000'
                  - latest
      responses:
        '200':
          description: JSON-RPC response (or batch)
          content:
            application/json:
              schema:
                oneOf:
                - $ref: '#/components/schemas/JsonRpcResponse'
                - type: array
                  items:
                    $ref: '#/components/schemas/JsonRpcResponse'
        '400':
          description: Malformed JSON-RPC request
        '429':
          description: Rate limited by the public RPC endpoint
        '500':
          description: Internal RPC error
components:
  schemas:
    JsonRpcError:
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: integer
        message:
          type: string
        data: {}
    JsonRpcResponse:
      type: object
      required:
      - jsonrpc
      properties:
        jsonrpc:
          type: string
          const: '2.0'
        id:
          oneOf:
          - type: integer
          - type: string
          - type: 'null'
        result: {}
        error:
          $ref: '#/components/schemas/JsonRpcError'
    JsonRpcRequest:
      type: object
      required:
      - jsonrpc
      - method
      properties:
        jsonrpc:
          type: string
          const: '2.0'
        id:
          oneOf:
          - type: integer
          - type: string
          - type: 'null'
        method:
          type: string
          examples:
          - eth_blockNumber
          - eth_chainId
          - eth_getBalance
          - eth_call
          - eth_sendRawTransaction
        params:
          type: array
          items: {}