# padelmaps.org Smart Contract Decoder

> padelmaps.org Smart Contract Decoder is a paid API for AI agents from padelmaps.org, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Decodes and analyzes a smart contract address using AI to produce a plain-English explanation of what the contract does

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-crypto/contract-decoder
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/padelmaps-org-smart-contract-decoder-f1dbe8fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xaImnopCs6Vlg4vJygpG2

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 padelmaps-org-smart-contract-decoder-f1dbe8fc -d '<json body>'
```

Example prompt: Can you decode and explain in plain English what this smart contract does? The address is 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum.

## When to prefer this

Choose this endpoint when a user needs a quick, AI-generated plain-English explanation of what a smart contract does without reading raw code or ABI. Ideal for non-technical users, DeFi researchers, or anyone auditing an unfamiliar contract address. Prefer over manual ABI inspection when a narrative summary is needed rather than raw data.

## Known failure modes

- Invalid or malformed contract address returns an error
- Contract address not found on specified chain returns not-found error
- Unverified or undeployable contract with no ABI may return incomplete analysis
- Unsupported blockchain network returns an error
- Rate limiting or payment failure returns 402 or 429 status

## How this service works

Decode and analyze smart contract with AI-powered plain English explanation

## Output

An AI-generated plain-English explanation of the smart contract, including what it does, its key functions, and its behavior — making the contract understandable without needing to read raw Solidity code.

## Example request

```json
{
 "input": {
  "body": {
   "chain": "ethereum",
   "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain (default: base)"
      },
      "address": {
       "type": "string",
       "description": "Contract address (0x + 40 hex chars)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "chain": {
         "type": "string"
        },
        "address": {
         "type": "string"
        },
        "analysis": {
         "type": "object",
         "description": "AI-generated analysis including summary, purpose, key_functions, security_notes, risk_level"
        },
        "verified": {
         "type": "boolean"
        },
        "explorer_url": {
         "type": "string",
         "description": "Link to view contract on block explorer"
        },
        "contract_name": {
         "type": "string"
        },
        "risk_analysis": {
         "type": "object",
         "description": "Pattern-based risk analysis with flags and risk_score"
        }
       }
      },
      "success": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/padelmaps-org-smart-contract-decoder-f1dbe8fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from padelmaps.org](https://www.zero.xyz/host/padelmaps.org/llms.txt)
