# padelmaps.org Crypto Price

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

Returns current price and 24-hour market data for a single cryptocurrency by symbol

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-tools/crypto/price
- 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-37c99883
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gbgpAAgNU0bYcoIPCKoD0

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-37c99883 -d '<json body>'
```

Example prompt: What is the current price of Bitcoin, including its 24-hour high, low, volume, and market cap?

## When to prefer this

Use this endpoint when you need current price and 24-hour market statistics for a single cryptocurrency by ticker symbol. Prefer it over the multi-price endpoint when only one coin is needed and you want minimal latency.

## Known failure modes

- Invalid or unrecognized symbol returns an error
- Symbol field missing from request body causes a bad request error
- Network timeout or upstream data provider unavailability
- Rate limiting if too many calls are made in quick succession

## How this service works

Get cryptocurrency price and market data

## Output

Returns a JSON object with the coin name, symbol, current price in USD, 24h high, 24h low, 24h volume, market cap, 24h price change percentage, and last updated timestamp. Also includes a 'cached' flag indicating whether the result is from cache.

## Example request

```json
{
 "symbol": "BTC"
}
```

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Crypto ticker or name. Aliases: 'coin', 'token'. E.g. 'BTC', 'bitcoin', 'ETH', 'solana'"
      },
      "currency": {
       "type": "string",
       "description": "Quote currency, default 'usd'. Alias: 'quote_currency'"
      }
     }
    },
    "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": {
      "name": {
       "type": "string"
      },
      "price": {
       "type": "number"
      },
      "cached": {
       "type": "boolean"
      },
      "symbol": {
       "type": "string"
      },
      "currency": {
       "type": "string"
      },
      "market_cap": {
       "type": "number"
      },
      "volume_24h": {
       "type": "number"
      },
      "change_24h_pct": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

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