# Agent Prices – Crypto Spot Price

> Agent Prices – Crypto Spot Price is a paid API for AI agents from agent-prices.annushka1190.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns the current spot price for a cryptocurrency trading pair (e.g. BTCUSDT) sourced from Binance Vision, payable per-call with USDC via x402.

## Facts

- Endpoint: GET https://agent-prices.annushka1190.workers.dev/v1/spot
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-prices-crypto-spot-price-72e1f898
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_10Q7kmzMhexSeijVRusp_

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 agent-prices-crypto-spot-price-72e1f898
```

Example prompt: What's the current spot price of Bitcoin in USDT right now? Pull it from Agent Prices using my USDC balance — no API key needed.

## When to prefer this

Choose this endpoint when you need a lightweight, keyless, pay-per-call real-time crypto spot price lookup — especially useful for AI agents that cannot manage long-lived API credentials and need to pay micro-amounts via USDC x402. Best for single-pair spot price queries where Binance pricing is acceptable and low latency matters.

## Known failure modes

- Invalid or unsupported trading pair symbol returns an error or empty result
- Payment failure via x402 if USDC balance is insufficient
- Rate limiting or quota exceeded on underlying Binance Vision feed
- Network timeout from Cloudflare Worker if Binance data source is unavailable
- Missing or malformed query parameters returns a validation error

## How this service works

Crypto price monitoring for AI agents: spot price, 24h ticker, batch quotes, and threshold alerts. Public market data via Binance Vision. Pay with USDC via x402 — no API keys.

## Output

A JSON object containing the symbol (e.g. 'BTCUSDT') and the current spot price as a number (e.g. {"symbol": "BTCUSDT", "price": 78000}), sourced in real time from Binance Vision public market data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "price": 78000,
  "symbol": "BTCUSDT"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-prices-crypto-spot-price-72e1f898/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-prices.annushka1190.workers.dev](https://www.zero.xyz/host/agent-prices.annushka1190.workers.dev/llms.txt)
