# Binance USDT Spot Price & 24h Stats

> Binance USDT Spot Price & 24h Stats is a paid API for AI agents from vmi3089643.contaboserver.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the current spot price and 24-hour market statistics (last price, change %, high, low, volume, quote volume) for a given Binance USDT trading pair

## Facts

- Endpoint: GET https://vmi3089643.contaboserver.net/v1/price/:symbol
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/binance-usdt-spot-price-24h-stats-993f596e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I0EfwaduZ0_56AKIwyvAc

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 binance-usdt-spot-price-24h-stats-993f596e
```

Example prompt: What's the current spot price and 24-hour stats for BTCUSDT on Binance — give me the last price, percent change, today's high and low, and volume?

## When to prefer this

Choose this endpoint when you need real-time Binance spot price data and 24-hour market statistics for a USDT-denominated trading pair in a pay-per-call, no-subscription model. It is ideal for agents that only occasionally need price data and want to avoid monthly API subscriptions. Prefer this over generic aggregators when Binance-specific pricing and volume are required.

## Known failure modes

- Invalid or unsupported symbol returns an error (e.g. non-existent pair or wrong format like 'BTC' instead of 'BTCUSDT')
- Network or upstream Binance API outage may cause timeout or 5xx response
- Payment failure (x402) if USDC balance is insufficient for the $0.001 per-call fee
- Symbol is valid but not a USDT pair (other quote currencies may not be supported)

## How this service works

Spot price and 24h statistics for a Binance USDT pair (last, change %, high, low, volume, quote volume)

## Output

Returns a JSON object with the trading pair's current spot price (last), 24-hour percentage price change, intraday high, intraday low, base asset volume, and quote asset (USDT) volume — all sourced from Binance's live market feed.

## 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",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/binance-usdt-spot-price-24h-stats-993f596e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vmi3089643.contaboserver.net](https://www.zero.xyz/host/vmi3089643.contaboserver.net/llms.txt)
