# padelmaps.org Bulk Crypto Prices

> padelmaps.org Bulk Crypto Prices is a paid API for AI agents from padelmaps.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches current prices for multiple cryptocurrencies in a single API call

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-tools/crypto/prices
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/padelmaps-org-97f43f5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gaS58-4pQqgQfE5yWDrvy

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-97f43f5c -d '<json body>'
```

Example prompt: What are the current prices of Bitcoin, Ethereum, Solana, and Chainlink right now?

## When to prefer this

Use this endpoint when you need prices for multiple cryptocurrencies at once and want to minimize API calls — it's more efficient than querying each coin individually. Prefer this over single-coin endpoints when handling a portfolio or basket of assets.

## Known failure modes

- Invalid or unrecognized coin symbols return an error
- Empty coin list input may return an error or empty response
- Rate limiting if called too frequently
- Payment failure if USDC balance is insufficient
- Network timeout for slow upstream price feeds

## How this service works

Get multiple cryptocurrency prices

## Output

Returns current price data for each requested cryptocurrency, potentially including price values in USD or other base currencies for multiple coins in a single response.

## Example request

```json
{
 "input": {
  "body": {
   "symbols": [
    "BTC",
    "ETH",
    "SOL"
   ],
   "currency": "usd"
  },
  "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": [
      "symbols"
     ],
     "properties": {
      "symbols": {
       "type": "array",
       "description": "List of tickers or names. Aliases: 'tokens', 'assets'"
      },
      "currency": {
       "type": "string",
       "description": "Quote currency, default 'usd'"
      }
     }
    },
    "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": {
      "cached": {
       "type": "boolean"
      },
      "prices": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

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