# Data Hub Admin BTC Stream

> Data Hub Admin BTC Stream is a paid API for AI agents from trafficmonetize.com, paid per call via x402, $10/call, status unknown (last checked 2026-09-13).

Streams real-time Bitcoin trading signals with position state (OPEN/CLOSED) and confidence scores via server-sent events

## Facts

- Endpoint: GET https://trafficmonetize.com/api/v1/data-hub/btc/stream
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/data-hub-admin-btc-stream-43b3f26e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YcWhzq71CnJ0tQpafdVQN

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 data-hub-admin-btc-stream-43b3f26e
```

Example prompt: Stream me the latest Bitcoin trading signals from the Data Hub — I want to see the current position state and how confident the signal is for each pick.

## When to prefer this

Choose this endpoint when you need a real-time, pay-per-use stream of Bitcoin trading signals with explicit confidence scoring delivered as server-sent events. It is best suited for agents or bots that need programmatic access to directional BTC picks (YES/NO) and want granular per-signal pricing via x402 micropayments rather than a subscription model.

## Known failure modes

- Payment not received — endpoint may return 402 Payment Required if x402 payment header is missing or insufficient
- Stream disconnects mid-session requiring client reconnection logic
- Confidence score may be absent or null if signal model has low data
- Bundle exhausted — no further signals emitted after purchased bundle count is consumed
- Rate limiting or IP throttling if too many concurrent connections are attempted

## How this service works

80%+ win rate BTC Kalshi predictions via real-time x402 stream. Pay $10 USDC once, get 10 signals pushed sub-second as the bot fires — no per-call payments, no API key required.

## Output

A server-sent event (SSE) stream containing two event types: 'bundle_info' (with signals_purchased count, total USDC amount, and per-signal USDC cost) and 'position' (with position_state such as OPEN, a signal pick of YES or NO, and a floating-point confidence score between 0 and 1).

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

## Response schema (JSON Schema)

```json
{
 "type": "text",
 "example": "event: bundle_info\ndata: {\"signals_purchased\":10,\"amount_usdc\":10,\"per_signal_usdc\":1}\n\nevent: position\ndata: {\"position_state\":\"OPEN\",\"signal\":{\"pick\":\"YES\",\"confidence\":0.82}}"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/data-hub-admin-btc-stream-43b3f26e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trafficmonetize.com](https://www.zero.xyz/host/trafficmonetize.com/llms.txt)
