# Decode EVM Transaction Receipt Token Transfers

> Decode EVM Transaction Receipt Token Transfers is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Decodes an EVM transaction receipt and extracts token transfer events from logs on Base, Ethereum, or Arbitrum.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/decode_evm_transaction_receipt_token_transfers
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/decode-evm-transaction-receipt-token-transfers-19e00881
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pbV5pUr9p09AGtqzPcA8q

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 decode-evm-transaction-receipt-token-transfers-19e00881
```

Example prompt: Can you decode the token transfers from this Base transaction — 0x4e3a...f291 — and tell me which tokens moved, how much gas was used, and whether it succeeded?

## When to prefer this

Use this endpoint when you need to programmatically decode EVM transaction receipts and extract token transfer events from Base, Ethereum, or Arbitrum without running your own node. It is ideal for confirming payment success, auditing DeFi activity, or debugging on-chain interactions by inspecting decoded log data and gas consumption.

## Known failure modes

- Invalid or malformed transaction hash returns an error
- Transaction hash not found on the specified chain
- Unsupported chain identifier causes rejection
- Network timeouts when querying RPC nodes
- Transaction with no token transfer logs returns empty logs array

## How this service works

Audit one public site or compare up to five domains across llms.txt, OpenAPI, robots, sitemap, x402 metadata, and the discovery surfaces autonomous buyers rely on.

## Output

Returns a JSON object with a success flag, the network name (e.g. 'base'), and a receipt object containing the transaction status code (1 = success), a boolean successful flag, gas_used as a string, and an array of decoded log entries representing token transfer events.

## 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": [
      "transaction_hash"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "base, ethereum, or arbitrum; defaults to base."
      },
      "transaction_hash": {
       "type": "string",
       "description": "32-byte 0x-prefixed transaction hash."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "network",
      "receipt"
     ],
     "properties": {
      "network": {
       "type": "string"
      },
      "receipt": {
       "type": "object",
       "required": [
        "status",
        "successful",
        "gas_used",
        "logs"
       ],
       "properties": {
        "logs": {
         "type": "array",
         "items": {}
        },
        "status": {
         "type": "integer"
        },
        "gas_used": {
         "type": "string"
        },
        "successful": {
         "type": "boolean"
        }
       },
       "additionalProperties": true
      },
      "success": {
       "type": "boolean"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "network": "base",
  "receipt": {
   "logs": [],
   "status": 1,
   "gas_used": "46218",
   "successful": true
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/decode-evm-transaction-receipt-token-transfers-19e00881/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
