mirrored listing x402 eip155:8453

Transaction receipt via eth_getTransactionReceipt - status, gas, and event logs for a mine

Transaction receipt via eth_getTransactionReceipt - status, gas, and event logs for a mined Ethereum transaction

Do you run api.onesource.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
5000 (raw units)
price
631
calls / 30d
631
unique payers
2026-09-18
updated

Provider

api.onesource.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x52E29e0d2Aa49bfBfC548C0A9F2196F4aa51f3ea",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "5000",
    "maxTimeoutSeconds": 3600
  },
  {
    "scheme": "batch-settlement",
    "network": "eip155:8453",
    "payTo": "0x52E29e0d2Aa49bfBfC548C0A9F2196F4aa51f3ea",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "5000",
    "maxTimeoutSeconds": 3600
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "pathParams": {
          "hash": "0xd2b18e305ac7e728601420b23e6f513df271b3e4239ace7d708873fa7e0a5a53"
        },
        "queryParams": {
          "network": "ethereum"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "data": {
            "result": {
              "blockNumber": "0x133da1e",
              "effectiveGasPrice": "0x3b9aca00",
              "gasUsed": "0x5208",
              "logs": [],
              "status": "0x1",
              "transactionHash": "0xad7e04119ecd85857728205f5b12e95f0bab8e99f9c2f60be5dc79cfc6a8df1f"
            }
          },
          "meta": {
            "cost_usdc": "0.001",
            "endpoint": "/api/chain/receipt/0xd2b18e305ac7e728601420b23e6f513df271b3e4239ace7d708873fa7e0a5a53",
            "payment_chain": "base",
            "payment_token": "USDC",
            "request_id": "00000000abcdef01"
          }
        },
        "type": "json"
      }
    },
    "routeTemplate": "/api/chain/receipt/:hash",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET",
                "HEAD",
                "DELETE"
              ],
              "type": "string"
            },
            "pathParams": {
              "properties": {
                "hash": {
                  "pattern": "^0x[a-fA-F0-9]{64}$",
                  "type": "string"
                }
              },
              "required": [
                "hash"
              ],
              "type": "object"
            },
            "queryParams": {
              "properties": {
                "network": {
                  "default": "ethereum",
                  "enum": [
                    "ethereum",
                    "sepolia",
                    "robinhood"
                  ],
                  "type": "string"
                }
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "data": {
                  "description": "Endpoint-specific response payload",
                  "properties": {
                    "result": {
                      "properties": {
                        "blockNumber": {
                          "type": "string"
                        },
                        "effectiveGasPrice": {
                          "type": "string"
                        },
                        "gasUsed": {
                          "type": "string"
                        },
                        "logs": {
                          "items": {},
                          "type": "array"
                        },
                        "status": {
                          "type": "string"
                        },
                        "transactionHash": {
                          "type": "string"
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "error": {
                  "properties": {
                    "code": {
                      "type": "integer"
                    },
                    "message": {
                      "type": "string"
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "meta": {
                  "properties": {
                    "cost_usdc": {
                      "type": "string"
                    },
                    "endpoint": {
                      "type": "string"
                    },
                    "payment_chain": {
                      "type": "string"
                    },
                    "payment_token": {
                      "type": "string"
                    },
                    "request_id": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "endpoint",
                    "request_id"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "data",
                "meta"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.onesource.io/api/chain/receipt/:hash"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.onesource.io/api/chain/receipt/:hash");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.onesource.io/api/chain/receipt/:hash")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/47.json, and this resource appears in /discovery/resources and /discovery/search.