# PerCall Binance 24h Ticker Statistics

> PerCall Binance 24h Ticker Statistics is a paid API for AI agents from percall.kimi.pro, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns 24-hour rolling statistics for a Binance trading pair including last price, percent change, high/low, and base/quote volume

## Facts

- Endpoint: GET https://percall.kimi.pro/api/x402/ticker/:symbol
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/percall-binance-24h-ticker-statistics-ee7b9f52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DzLu0DFzUwx1IHjp8qQRb

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 percall-binance-24h-ticker-statistics-ee7b9f52
```

Example prompt: Pull the 24-hour ticker stats for BTCUSDT from Binance — I want to see the last price, percent change, and the high and low for today.

## When to prefer this

Use this endpoint when you need comprehensive 24-hour market summary data for a Binance-listed trading pair in a single call, rather than just the current spot price. Prefer this over a spot price endpoint when you need change percentage, volume, or high/low context. It is ideal for portfolio monitoring, volatility checks, and trading signal generation where historical-day context matters.

## Known failure modes

- Invalid or unsupported symbol returns an error (Binance does not recognize the pair)
- Network or upstream Binance API outage causes request failure
- Payment failure or insufficient USDC balance prevents the call from completing
- Typo in symbol (e.g. BTCUSD instead of BTCUSDT) returns no data

## How this service works

[PerCall] 24-hour statistics for a trading pair: last price, change %, high/low, base and quote volume. Data sourced live from Binance public API.

## Output

Returns a JSON object with the last traded price, 24-hour price change and change percentage, 24-hour high and low prices, base asset volume, and quote asset volume for the requested trading pair, sourced live from Binance.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Trading pair symbol as used by Binance, e.g. BTCUSDT."
      }
     }
    }
   },
   "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/percall-binance-24h-ticker-statistics-ee7b9f52/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from percall.kimi.pro](https://www.zero.xyz/host/percall.kimi.pro/llms.txt)
