{
  "openapi": "3.1.0",
  "info": {
    "title": "eth_getTransactionReceipt",
    "version": "2.0.0",
    "description": "Get the receipt of a transaction by hash.",
    "license": {
      "name": "Etherscan API Terms",
      "url": "https://etherscan.io/terms"
    }
  },
  "servers": [
    {
      "url": "https://api.etherscan.io",
      "description": "Etherscan API."
    }
  ],
  "security": [
    {
      "apiKey": []
    }
  ],
  "paths": {
    "/v2/api": {
      "get": {
        "operationId": "getEthgettransactionreceipt",
        "summary": "eth_getTransactionReceipt",
        "description": "Get the receipt of a transaction by hash.",
        "parameters": [
          {
            "name": "chainid",
            "in": "query",
            "required": true,
            "description": "Chain ID to query, eg 1 for Ethereum, 8453 for Base from our supported chains.",
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "module",
            "in": "query",
            "required": true,
            "description": "Set to proxy for this endpoint.",
            "schema": {
              "type": "string",
              "default": "proxy"
            },
            "example": "proxy"
          },
          {
            "name": "action",
            "in": "query",
            "required": true,
            "description": "Set to eth_getTransactionReceipt for this endpoint.",
            "schema": {
              "type": "string",
              "default": "eth_getTransactionReceipt"
            },
            "example": "eth_getTransactionReceipt"
          },
          {
            "name": "txhash",
            "in": "query",
            "required": true,
            "description": "The transaction hash to query.",
            "schema": {
              "type": "string"
            },
            "example": "0xadb8aec59e80db99811ac4a0235efa3e45da32928bcff557998552250fa672eb"
          }
        ],
        "security": [
          {
            "apiKey": []
          }
        ],
        "x-mint": {
          "metadata": {
            "title": "eth_getTransactionReceipt",
            "description": "Get the receipt of a transaction by hash."
          }
        },
        "x-etherscan-source-page": {
          "page": "api-reference/endpoint/ethgettransactionreceipt",
          "title": "eth_getTransactionReceipt",
          "module": "proxy",
          "action": "eth_getTransactionReceipt"
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "apiKey": {
        "type": "apiKey",
        "in": "query",
        "name": "apikey",
        "description": "Your Etherscan API key."
      }
    }
  }
}