# DataPackVibe Ethereum Event Log Decoder

> DataPackVibe Ethereum Event Log Decoder is a paid API for AI agents from api.datapackvibe.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Decodes raw Ethereum event log topics and data into a named event with typed, labeled parameters — no on-chain lookup required.

## Facts

- Endpoint: POST https://api.datapackvibe.com/log/decode
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datapackvibe-ethereum-event-log-decoder-21825c2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zheySW1gnK4CWqAvQ13Fl

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 datapackvibe-ethereum-event-log-decoder-21825c2d -d '<json body>'
```

Example prompt: Can you decode this Ethereum event log for me? Topics: ["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000abcdef1234567890abcdef1234567890abcdef12","0x000000000000000000000000fedcba0987654321fedcba0987654321fedcba09"] and data: "0x000000000000000000000000000000000000000000000000016345785d8a0000" — tell me what event this is and what each parameter means.

## When to prefer this

Use this endpoint when you have raw Ethereum event log topics and data and need to decode them into human-readable event names and typed parameters offline — without querying an RPC node, Etherscan, or any external blockchain service. Ideal for transaction receipt parsing, debugging, auditing, or building tools that need fast, stateless log interpretation.

## Known failure modes

- Malformed or truncated topics/data returns a decode error
- Unknown event signature (topic[0] not recognized) returns an unrecognized event error
- Mismatched ABI encoding (wrong parameter count or type) returns a parse failure
- Missing required body fields returns a validation error
- Ambiguous or incomplete hex strings cause decoding failures

## How this service works

Decode Ethereum event logs the caller pastes - topics and data into a named event with typed parameters. Input-in/answer-out: no chain lookup, no invented values.

## Output

Returns the decoded event name and a list of named, typed parameters with their values — all derived from the ABI-encoded topics and data provided, with no on-chain or external lookups performed.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/datapackvibe-ethereum-event-log-decoder-21825c2d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.datapackvibe.com](https://www.zero.xyz/host/api.datapackvibe.com/llms.txt)
