# skills.onesource.io Ethereum Transaction Lookup

> skills.onesource.io Ethereum Transaction Lookup is a paid API for AI agents from skills.onesource.io, paid per call via x402, $0.008000/call, status unknown (last checked 2026-09-14).

Fetches on-chain transaction details and receipt data for a given transaction hash on Ethereum mainnet, returning decoded metadata, block info, and execution receipt fields.

## Facts

- Endpoint: GET https://skills.onesource.io/api/chain/tx/0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b
- Price: $0.008000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/skills-onesource-io-6ec27de4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4SfrPsjeq_AAkWKtHJV1P

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 skills-onesource-io-6ec27de4
```

Example prompt: Can you pull up the full on-chain details and execution receipt for Ethereum transaction 0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b on mainnet — I need the status, gas used, block number, and sender/receiver addresses.

## When to prefer this

Use this endpoint when you need to inspect a specific Ethereum mainnet transaction by its hash and want decoded receipt data including status, gas, block info, and logs — especially in agentic workflows where you need to verify transaction outcomes or extract on-chain execution details without running your own Ethereum node.

## Known failure modes

- Invalid transaction hash format (not 0x + 64 hex chars) — returns validation error
- Transaction hash not found on Ethereum mainnet — returns 404 or empty result
- Network parameter set to unsupported value — returns validation error
- RPC node timeout or Ethereum node unavailability — returns 503 or timeout error
- Payment not provided or insufficient — returns 402 Payment Required

## How this service works

Fetches details for a specific blockchain transaction by hash.

## Output

Returns a JSON object containing the transaction receipt with fields including: to/from addresses, transaction status (success/fail), gas used, block hash, block number, logs, logsBloom, contract address (if deployment), transaction type, and other decoded metadata about the on-chain execution.

## Example request

```json
{
 "network": "ethereum"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "network": {
   "enum": [
    "ethereum",
    "sepolia",
    "avax",
    "megaeth",
    "megaeth-testnet",
    "base"
   ],
   "type": "string",
   "default": "ethereum",
   "description": "The blockchain network to query. The transaction hash is passed in the URL path, not in the body."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "meta"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "transaction",
    "receipt"
   ],
   "properties": {
    "receipt": {
     "type": "object",
     "required": [
      "type",
      "status",
      "cumulativeGasUsed",
      "logs",
      "logsBloom",
      "transactionHash",
      "transactionIndex",
      "blockHash",
      "blockNumber",
      "gasUsed",
      "effectiveGasPrice",
      "from",
      "to",
      "contractAddress"
     ],
     "properties": {
      "to": {
       "type": "string"
      },
      "from": {
       "type": "string"
      },
      "logs": {
       "type": "array",
       "items": {
        "type": "unknown"
       }
      },
      "type": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "gasUsed": {
       "type": "string"
      },
      "blockHash": {
       "type": "string"
      },
      "logsBloom": {
       "type": "string"
      },
      "blockNumber": {
       "type": "string"
      },
      "contractAddress": {
       "type": "null"
      },
      "transactionHash": {
       "type": "string"
      },
      "transactionIndex": {
       "type": "string"
      },
      "cumulativeGasUsed": {
       "type": "string"
      },
      "effectiveGasPrice": {
       "type": "string"
      }
     }
    },
    "transaction": {
     "type": "object",
     "required": [
      "type",
      "chainId",
      "nonce",
      "gasPrice",
      "gas",
      "to",
      "value",
      "input",
      "r",
      "s",
      "v",
      "hash",
      "blockHash",
      "blockNumber",
      "transactionIndex",
      "from"
     ],
     "properties": {
      "r": {
       "type": "string"
      },
      "s": {
       "type": "string"
      },
      "v": {
       "type": "string"
      },
      "to": {
       "type": "string"
      },
      "gas": {
       "type": "string"
      },
      "from": {
       "type": "string"
      },
      "hash": {
       "type": "string"
      },
      "type": {
       "type": "string"
      },
      "input": {
       "type": "string"
      },
      "nonce": {
       "type": "string"
      },
      "value": {
       "type": "string"
      },
      "chainId": {
       "type": "string"
      },
      "gasPrice": {
       "type": "string"
      },
      "blockHash": {
       "type": "string"
      },
      "blockNumber": {
       "type": "string"
      },
      "transactionIndex": {
       "type"
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/skills-onesource-io-6ec27de4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from skills.onesource.io](https://www.zero.xyz/host/skills.onesource.io/llms.txt)
