# padelmaps.org Crypto Price Feed

> padelmaps.org Crypto Price Feed 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).

Returns token price data including market cap, 24h volume, and price changes for a given cryptocurrency

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-crypto/price-feed
- 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-63e532ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nGScaqvhFW-7rTqbdNTOO

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-63e532ec -d '<json body>'
```

Example prompt: What's the current price, market cap, 24-hour volume, and recent price change for ETH?

## When to prefer this

Use this endpoint when you need real-time or near-real-time price, market cap, volume, and price change data for a specific cryptocurrency token and are willing to pay $0.02 USDC per lookup. Suitable for agents that need enriched market data beyond just a price quote.

## Known failure modes

- Token symbol not found or unsupported — returns error or empty data
- Invalid request body — missing required token identifier field
- Payment not included or insufficient — x402 payment required at $0.02 USDC per call
- Rate limiting or server unavailability — returns 429 or 5xx error
- Network timeout if upstream market data provider is slow

## How this service works

Get token price data with market cap, volume, and price changes

## Output

Returns structured data for the queried token including current price in USD, total market capitalization, 24-hour trading volume, and percentage price changes over recent time periods.

## Example request

```json
{
 "input": {
  "body": {
   "token": "ETH",
   "include_history": false
  },
  "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": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "Token symbol (ETH, BTC), name (ethereum), or contract address"
      },
      "include_history": {
       "type": "boolean",
       "description": "Include 7-day price history (default: false)"
      }
     }
    },
    "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": {
        "ath": {
         "type": "object",
         "description": "All-time high price and date"
        },
        "atl": {
         "type": "object",
         "description": "All-time low price and date"
        },
        "price": {
         "type": "object",
         "description": "Current price in USD"
        },
        "token": {
         "type": "object",
         "description": "Token id, symbol, name, image"
        },
        "market": {
         "type": "object",
         "description": "Market cap, volume, supply data"
        },
        "changes": {
         "type": "object",
         "description": "Price changes for 1h, 24h, 7d, 30d"
        }
       }
      },
      "success": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/padelmaps-org-63e532ec/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)
