# Bybit Spot Ticker API (via Saymon RU / payforapi.com)

> Bybit Spot Ticker API (via Saymon RU / payforapi.com) is a paid API for AI agents from payforapi.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns real-time price, 24h price change percentage, and 24h volume for a Bybit spot trading pair

## Facts

- Endpoint: GET https://payforapi.com/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/bybit-spot-ticker-api-via-saymon-ru-payforapi-com-20d82e4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C-4rFmBX8iyjGAaU5CxZU

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 bybit-spot-ticker-api-via-saymon-ru-payforapi-com-20d82e4e
```

Example prompt: What's the current price of BTCUSDT on Bybit spot right now, and how much has it changed in the last 24 hours?

## When to prefer this

Use this endpoint when you need real-time Bybit spot market ticker data — specifically last price, 24h high/low, percent change, and quote volume — for a specific trading pair. Prefer this over generic crypto price APIs when your workflow is specifically targeting Bybit spot market data, or when you need volume and price-change context together in a single call at low cost ($0.005/call).

## Known failure modes

- Invalid or unsupported symbol returns an error or empty response
- Network timeout if Bybit upstream is slow or unavailable
- Missing 'symbol' field in request body may cause a 400 or empty result
- Payment failure (402) if x402 payment is not properly handled
- Non-spot or delisted pairs may return no data

## How this service works

PAYFORAPI.com — окно между ру-рынком и глобальным x402. Глобальный провайдер: твой эндпоинт платят агенты из СНГ. Ру-провайдер: твой сервис — на мировой витрине. Локализация, продвижение, платежи USDC — наша работа.

## Output

Returns a JSON object with the trading pair symbol, last traded price, 24h high, 24h low, 24h price change percentage, and 24h quote volume for the requested Bybit spot pair.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Bybit spot pair, e.g. BTCUSDT"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "low24h": "94100.00",
  "symbol": "BTCUSDT",
  "high24h": "98200.00",
  "lastPrice": "97000.00",
  "quoteVolume": "1234567890",
  "priceChangePercent": "2.5"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bybit-spot-ticker-api-via-saymon-ru-payforapi-com-20d82e4e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payforapi.com](https://www.zero.xyz/host/payforapi.com/llms.txt)
