# Binance Spot 24hr Ticker Stats

> Binance Spot 24hr Ticker Stats is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns 24-hour rolling statistics (price change, volume, high/low, etc.) for Binance spot trading symbols.

## Facts

- Endpoint: GET https://api.syraa.fun/binance/spot/ticker/24hr
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-syraa-fun-92c42856
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jT-tFu4TphDEDAqQ6wZoQ

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 api-syraa-fun-92c42856
```

Example prompt: Can you pull the 24-hour ticker stats for BTCUSDT on Binance spot — I want to see the price change, percentage move, volume, and the daily high and low?

## When to prefer this

Use this endpoint when you need standardized 24-hour rolling market statistics for Binance spot pairs, especially price change, volume, and high/low data. Prefer this over the order book depth endpoint when you need summary statistics rather than live bid/ask levels. Choose this over correlation or market insights endpoints when you specifically need per-symbol ticker data.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty result
- Missing required query parameters may return a 400 bad request
- Payment not processed (x402 flow failure) returns a 402 Payment Required
- Rate limiting or upstream Binance API unavailability causes 5xx errors
- Symbol format mismatch (e.g. using BTC-USDT instead of BTCUSDT) returns no data

## How this service works

Returns 24-hour Binance spot ticker stats for symbols.

## Output

A JSON object containing 24-hour rolling statistics for the requested Binance spot symbol(s), including open price, last price, price change, percentage change, 24h high, 24h low, volume, and quote asset volume.

## 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": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-syraa-fun-92c42856/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.syraa.fun](https://www.zero.xyz/host/api.syraa.fun/llms.txt)
