# Agent Prices – 24h Ticker

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

Returns the 24-hour ticker price data for a cryptocurrency trading pair (e.g. BTCUSDT) from Binance Vision market data.

## Facts

- Endpoint: GET https://agent-prices.annushka1190.workers.dev/v1/ticker
- Price: $0.005/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-24h-ticker-7b182d7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KXzSfy-Jh2fbHtswvP1iy

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-24h-ticker-7b182d7e
```

Example prompt: What's the current 24-hour ticker price for BTCUSDT right now?

## When to prefer this

Use this endpoint when an AI agent needs real-time or 24h crypto price data without managing API keys, and can pay per-call in USDC via x402. Ideal for agents in automated workflows that need lightweight, low-cost, keyless access to Binance market data for a specific trading pair.

## Known failure modes

- Invalid or unsupported trading pair symbol returns an error
- Payment not completed (x402 payment required, 0.005 USDC per call) results in 402 response
- Rate limiting or upstream Binance Vision outage causes service unavailability
- Missing or malformed query parameters return 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

Returns a JSON object containing the trading pair symbol (e.g. 'BTCUSDT') and its current spot price (e.g. {"symbol": "BTCUSDT", "price": 78000}), sourced 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-24h-ticker-7b182d7e/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)
