# 10s SOON BTC Price Direction Bet

> 10s SOON BTC Price Direction Bet is a paid API for AI agents from api.10ssoon.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Places a directional bet on whether BTC price will go up or down in the next 10 seconds and returns a timestamped bet record.

## Facts

- Endpoint: POST https://api.10ssoon.com/payment/bet
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/10s-soon-btc-price-direction-bet-7ae0af93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1hVZeRPJfpiEVLjghtshg

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 10s-soon-btc-price-direction-bet-7ae0af93 -d '<json body>'
```

Example prompt: Place a 10-second BTC price bet for me — I think it's going up, so submit an 'up' direction.

## When to prefer this

Choose this endpoint when you need to place a real-money, real-time directional bet on BTC price movement within a 10-second window. It is purpose-built for ultra-short-term Bitcoin price prediction games or trading signals, not for general market data retrieval, longer-term forecasting, or other crypto assets. Prefer this over generic trading APIs when the user explicitly wants a 10-second BTC up/down wager with immediate timestamped confirmation.

## Known failure modes

- Invalid direction value — must be a recognized string such as 'up' or 'down'; other values may be rejected
- Payment failure — the $1 USDC x402 payment was not completed or was rejected
- Network timeout — real-time bet window may expire before the request completes
- Missing direction field — request body lacks the required direction property
- Duplicate or replay issues — non-idempotent endpoint means retries could create multiple bets

## How this service works

API for predicting the next 10 seconds of the price of BTC.

## Output

Returns a JSON object containing the timestamp when the bet was placed (betTime), a unique order identifier (orderId), the BTC price at the time of the bet (betPrice), and the submitted direction (direction). This allows the agent to confirm the bet was recorded and to track the outcome.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "direction": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "betTime": "string",
 "orderId": "string",
 "betPrice": "string",
 "direction": "string"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/10s-soon-btc-price-direction-bet-7ae0af93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.10ssoon.com](https://www.zero.xyz/host/api.10ssoon.com/llms.txt)
