# Rotary Agency Crypto Price API

> Rotary Agency Crypto Price API is a paid API for AI agents from rotaryagency.uk, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns current price and market data for a specified cryptocurrency

## Facts

- Endpoint: GET https://rotaryagency.uk/api/crypto/price
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rotary-agency-crypto-price-api-6b1ba953
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZEKXIiQzYdE7Qllmn6sbU

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 rotary-agency-crypto-price-api-6b1ba953
```

Example prompt: What's the current price and market data for Bitcoin right now — including its 24-hour change and market cap?

## When to prefer this

Choose this endpoint when you need a quick, low-cost per-call crypto price lookup for any coin, especially in agentic workflows where you pay per query via x402/USDC micropayments rather than maintaining a subscription. Suitable for spot-checking prices, enriching portfolio data, or triggering alerts in automated agents.

## Known failure modes

- Unknown or unsupported cryptocurrency symbol returns an error
- Network or upstream data provider outage may return stale or no data
- Malformed coin identifier returns a 400-level error
- Rate limiting or payment failure (x402) prevents the request from completing

## How this service works

Crypto Price API — get current price and market data for any...

## Output

Returns current price and market data for the requested cryptocurrency, including price in a target currency, market capitalization, 24-hour trading volume, and percentage price change over the last 24 hours.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ath": "number",
  "name": "string",
  "symbol": "string",
  "low_24h": "number",
  "ath_date": "string",
  "high_24h": "number",
  "market_cap": "number",
  "volume_24h": "number",
  "last_updated": "string",
  "total_supply": "number",
  "current_price": "number",
  "market_cap_rank": "number",
  "price_change_24h": "number",
  "circulating_supply": "number",
  "price_change_percentage_24h": "number"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rotary-agency-crypto-price-api-6b1ba953/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rotaryagency.uk](https://www.zero.xyz/host/rotaryagency.uk/llms.txt)
