{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "api-dirtroad-dev-tools-web3-evm-eth-get-transaction-receipt",
  "title": "Dirt Road \u00b7 EVM Transaction Receipt Lookup",
  "url": "https://api.dirtroad.dev/tools/web3/evm/eth-get-transaction-receipt",
  "category": "data",
  "summary": "Fetch complete transaction receipts for any EVM transaction hash, including gas consumption, event logs, deployed contract addresses, and execution status.",
  "seo": {
    "title": "EVM Transaction Receipt API | Web3 Data x402",
    "description": "Retrieve EVM transaction receipts with gas used, logs, contract address, and success status. Verify execution and access event logs. USDC on Base."
  },
  "use_cases": [
    "Verify transaction success before dependent operations",
    "Extract event logs for DeFi protocol integrations",
    "Retrieve deployed contract addresses from creation transactions",
    "Audit gas consumption patterns for cost optimization"
  ],
  "ideal_buyer": "Web3 indexing agents, transaction monitoring systems, and DeFi integrations requiring reliable EVM receipt data.",
  "example_prompt": "Get the transaction receipt for 0x3d6f0c7e9f8a2b1c5d4e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7 on Base.",
  "example_request_body": {
    "hash": "0x3d6f0c7e9f8a2b1c5d4e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7",
    "chain": "eip155:8453"
  },
  "risk_notes": [
    "May process personal / identity data."
  ],
  "pricing_sanity": {
    "flag": "cheap_outlier",
    "ratio": 0.005,
    "median_category_atomic": 20000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x71dc0bc68e7f0e2c5aace661b0f3fb995a80aaf4",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "100",
      "max_timeout_seconds": 300,
      "mime_type": "application/json",
      "description": "Retrieve the transaction receipt for a given transaction hash. Returns execution details including gas used, logs, contract address (if deployment), and success status. Critical for verifying transaction execution and accessing event logs.",
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "POST",
          "bodyType": "json",
          "bodyFields": {
            "hash": {},
            "chain": {}
          }
        },
        "output": {
          "type": "object",
          "required": [
            "chain",
            "hash",
            "receipt"
          ],
          "properties": {
            "hash": {
              "type": "string",
              "description": "Transaction hash requested"
            },
            "chain": {
              "type": "string",
              "description": "CAIP-12 chain identifier"
            },
            "receipt": {
              "type": "object",
              "required": [
                "blockHash",
                "blockNumber",
                "cumulativeGasUsed",
                "effectiveGasPrice",
                "from",
                "gasUsed",
                "logs",
                "logsBloom",
                "status",
                "to",
                "transactionHash",
                "transactionIndex",
                "type"
              ],
              "properties": {
                "to": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Transaction recipient or null if contract deployment"
                },
                "from": {
                  "type": "string",
                  "description": "Transaction sender address"
                },
                "logs": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "data": {
                        "type": "string",
                        "description": "Log data"
                      },
                      "topics": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        },
                        "description": "Log topics"
                      },
                      "address": {
                        "type": "string",
                        "description": "Contract address that emitted the log"
                      },
                      "removed": {
                        "type": "boolean",
                        "description": "True if log was removed due to chain reorganization"
                      },
                      "logIndex": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Index of log within the block"
                      },
                      "blockHash": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Block hash containing the log"
                      },
                      "blockNumber": {
                        "type": "string",
                        "description": "Block number containing the log as string"
                      },
                      "transactionHash": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Hash of transaction that emitted the log"
                      },
                      "transactionIndex": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Index of transaction within the block"
                      }
                    }
                  },
                  "description": "Log objects generated by this transaction"
                },
                "root": {
                  "type": "string",
                  "description": "Post-transaction state root (pre-Byzantium)"
                },
                "type": {
                  "type": "string",
                  "description": "Transaction type"
                },
                "status": {
                  "enum": [
                    "success",
                    "reverted"
                  ],
                  "type": "string",
                  "description": "Transaction success status"
                },
                "gasUsed": {
                  "type": "string",
                  "description": "Gas used by this transaction as string"
                },
                "blockHash": {
                  "type": "string",
                  "description": "Hash of block containing this transaction"
                },
                "logsBloom": {
                  "type": "string",
                  "description": "Logs bloom filter"
                },
                "blobGasUsed": {
                  "type": "string",
                  "description": "Blob gas used as string (EIP-4844)"
                },
                "blockNumber": {
                  "type": "string",
                  "description": "Block number as string"
                },
                "blobGasPrice": {
                  "type": "string",
                  "description": "Blob gas price as string (EIP-4844)"
                },
                "contractAddress": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Address of new contract or null if no contract was created"
                },
                "transactionHash": {
                  "type": "string",
                  "description": "Transaction hash"
                },
                "transactionIndex": {
                  "type": "number",
                  "description": "Index of transaction in the block"
                },
                "cumulativeGasUsed": {
                  "type": "string",
                  "description": "Gas used by this and all preceding transactions as string"
                },
                "effectiveGasPrice": {
                  "type": "string",
                  "description": "Effective gas price paid for inclusion as string"
                }
              },
              "description": "Complete transaction receipt with all BigInt values converted to strings"
            }
          }
        }
      }
    }
  ],
  "duplicate_cluster_id": "data-cl-abbcc0c8a181",
  "origin": {
    "slug": "api-dirtroad-dev",
    "host": "api.dirtroad.dev",
    "url": "https://api.dirtroad.dev",
    "favicon": "https://dirtroad.dev/mintlify-assets/_mintlify/favicons/dirtroaddev/hL1CxJhINP8GaPGW/_generated/favicon/favicon.ico"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/api-dirtroad-dev-tools-web3-evm-eth-get-transaction-receipt",
    "url": "https://x402all.com/resource/api-dirtroad-dev-tools-web3-evm-eth-get-transaction-receipt",
    "name": "Dirt Road \u00b7 EVM Transaction Receipt Lookup",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/api-dirtroad-dev-tools-web3-evm-eth-get-transaction-receipt",
      "@type": "Offer",
      "price": "0.0001",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0.000100",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "name": "paymentNetwork",
          "value": "base"
        },
        {
          "@type": "PropertyValue",
          "name": "paymentAsset",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ]
    },
    "sameAs": "https://api.dirtroad.dev/tools/web3/evm/eth-get-transaction-receipt",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/api-dirtroad-dev",
      "url": "https://api.dirtroad.dev",
      "name": "api.dirtroad.dev",
      "@type": "Organization"
    },
    "identifier": "api-dirtroad-dev-tools-web3-evm-eth-get-transaction-receipt",
    "description": "Retrieve EVM transaction receipts with gas used, logs, contract address, and success status. Verify execution and access event logs. USDC on Base.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=api-dirtroad-dev-tools-web3-evm-eth-get-transaction-receipt",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "data"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=api-dirtroad-dev-tools-web3-evm-eth-get-transaction-receipt"
}
