Optimism JSON-RPC API

Standard Ethereum JSON-RPC method invocation.

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

optimism-json-rpc-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OP Mainnet JSON RPC API
  description: 'Public Ethereum JSON-RPC endpoint for OP Mainnet (chain ID 10) and the

    OP Sepolia testnet (chain ID 11155420). All standard Ethereum `eth_*`

    namespace methods are supported plus Optimism extensions used for L1

    fee estimation and rollup-specific data.


    All RPC calls are POSTed to the root path of the endpoint with a

    standard JSON-RPC 2.0 envelope. The public endpoints are open

    (unauthenticated) and rate limited; production teams typically route

    through Alchemy, QuickNode, Infura, or a self-hosted op-geth/op-node

    pair.

    '
  version: 1.0.0
  contact:
    name: Optimism
    url: https://docs.optimism.io
servers:
- url: https://mainnet.optimism.io
  description: OP Mainnet (chain ID 10) public RPC
- url: https://sepolia.optimism.io
  description: OP Sepolia (chain ID 11155420) public RPC
tags:
- name: JSON-RPC
  description: Standard Ethereum JSON-RPC method invocation.
paths:
  /:
    post:
      tags:
      - JSON-RPC
      summary: Invoke a JSON-RPC method
      description: 'Execute any supported Ethereum JSON-RPC method (e.g. `eth_blockNumber`,

        `eth_chainId`, `eth_getBalance`, `eth_call`, `eth_getTransactionByHash`,

        `eth_getLogs`, `net_version`, `web3_clientVersion`).

        '
      operationId: invokeJsonRpc
      requestBody:
        required: true
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/JsonRpcRequest'
              - type: array
                items:
                  $ref: '#/components/schemas/JsonRpcRequest'
            examples:
              ethBlockNumber:
                summary: Get latest block number
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: eth_blockNumber
                  params: []
              ethChainId:
                summary: Get chain ID
                value:
                  jsonrpc: '2.0'
                  id: 2
                  method: eth_chainId
                  params: []
              ethGetBalance:
                summary: Get account balance
                value:
                  jsonrpc: '2.0'
                  id: 3
                  method: eth_getBalance
                  params:
                  - '0x0000000000000000000000000000000000000000'
                  - latest
              ethCall:
                summary: Read-only contract call
                value:
                  jsonrpc: '2.0'
                  id: 4
                  method: eth_call
                  params:
                  - to: '0x4200000000000000000000000000000000000006'
                    data: '0x06fdde03'
                  - latest
      responses:
        '200':
          description: JSON-RPC response (single or batch).
          content:
            application/json:
              schema:
                oneOf:
                - $ref: '#/components/schemas/JsonRpcResponse'
                - type: array
                  items:
                    $ref: '#/components/schemas/JsonRpcResponse'
        '429':
          description: Rate limit exceeded on the public endpoint.
components:
  schemas:
    JsonRpcResponse:
      type: object
      required:
      - jsonrpc
      - id
      properties:
        jsonrpc:
          type: string
          const: '2.0'
        id:
          oneOf:
          - type: string
          - type: integer
          - type: 'null'
        result:
          description: Method result; type depends on the method.
        error:
          $ref: '#/components/schemas/JsonRpcError'
    JsonRpcError:
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: integer
        message:
          type: string
        data:
          description: Optional error data.
    JsonRpcRequest:
      type: object
      required:
      - jsonrpc
      - method
      - id
      properties:
        jsonrpc:
          type: string
          const: '2.0'
        id:
          oneOf:
          - type: string
          - type: integer
        method:
          type: string
          description: 'Name of the Ethereum JSON-RPC method, e.g. `eth_blockNumber`,

            `eth_chainId`, `eth_call`, `eth_getLogs`, `eth_getBalance`,

            `eth_sendRawTransaction`.

            '
        params:
          type: array
          items: {}
externalDocs:
  description: Optimism Superchain Networks Docs
  url: https://docs.optimism.io/superchain/networks