# Ethereum Transaction Details

> Ethereum Transaction Details is a paid API for AI agents from appearing-clinics-show-wrote.trycloudflare.com, paid per call via x402, price unknown, status down (last checked 2026-09-15).

Retrieves full on-chain details for a specific Ethereum transaction by its hash

## Facts

- Endpoint: GET https://appearing-clinics-show-wrote.trycloudflare.com/ethereum-transaction-sample
- Price: price unknown
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ethereum-transaction-details-82ff51ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gFTHkeJ3dkf0Cd0TxBM33

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability ethereum-transaction-details-82ff51ae
```

Example prompt: Can you pull up the full details for Ethereum transaction 0xf85d0ec397bea9056144b65aa5c48a5983d426a0dc3fa9872965055d367727c7 — I want to see who sent it, who received it, how much ETH was transferred, and whether it confirmed?

## When to prefer this

Use this endpoint when you need detailed, verified on-chain data for a specific Ethereum transaction identified by its hash. It is ideal for payment verification, transaction auditing, debugging failed transactions, or enriching records with on-chain provenance. Prefer this over block explorers when you need machine-readable structured data in an agent workflow rather than a human-readable webpage.

## Known failure modes

- Invalid or malformed transaction hash returns an error or empty result
- Transaction hash not found on Ethereum mainnet (e.g. it exists only on a testnet) returns no data
- Network timeout or Cloudflare tunnel unavailability causes a connection error
- Unpaid request to the paid endpoint returns HTTP 402 Payment Required

## How this service works

Free verified Ethereum transaction sample. Purchase any transaction by hash at GET /ethereum-transaction?hash=0xf85d0ec397bea9056144b65aa5c48a5983d426a0dc3fa9872965055d367727c7 for $0.0075.

## Output

Returns full Ethereum transaction details for the given hash, including sender and recipient addresses, ETH value transferred, gas used and gas price, block number, transaction index, nonce, input data, and confirmation/success status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ethereum-transaction-details-82ff51ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from appearing-clinics-show-wrote.trycloudflare.com](https://www.zero.xyz/host/appearing-clinics-show-wrote.trycloudflare.com/llms.txt)
