# JEGA BTC/USD Drift Oracle

> JEGA BTC/USD Drift Oracle is a paid API for AI agents from api.jega.digital, paid per call via x402, $0.001/call, status down (last checked 2026-09-14).

Returns real-time BTC/USD price drift signals by cross-analyzing Coinbase spot liquidity against Kalshi 15-minute implied volatility for arbitrage detection

## Facts

- Endpoint: GET https://api.jega.digital/api/drift
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-jega-digital-7f738330
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SNSpv6O0RmUcRCjordwVf

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 api-jega-digital-7f738330
```

Example prompt: What's the current BTC/USD price drift signal right now — specifically the delta between Coinbase spot and Kalshi's 15-minute implied volatility?

## When to prefer this

Choose this endpoint when your AI agent or trading bot needs a real-time, cross-venue BTC/USD arbitrage signal that fuses Coinbase spot price with Kalshi prediction market implied volatility. Prefer this over generic ticker APIs when you need drift/delta analytics rather than raw price quotes, especially for 15-minute volatility window analysis.

## Known failure modes

- Coinbase or Kalshi feed unavailable — stale or missing drift data returned
- Payment not received (402) — requires 0.001 USDC per call via x402 protocol
- Rate limiting if too many rapid successive calls
- Empty or null drift signal if volatility inputs are momentarily unavailable
- Invalid input schema returns 400 or empty result

## How this service works

High-frequency real-time BTC/USD price drift oracle.

## Output

A JSON object containing the current BTC/USD drift value, the cross-venue arbitrage delta between Coinbase spot liquidity and Kalshi 15-minute implied volatility, and associated signal metadata for algorithmic trading consumption.

## Example request

```json
{
 "input": {}
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "drift",
  "signal",
  "verified",
  "timestamp",
  "spot_price",
  "kalshi_implied_price"
 ],
 "properties": {
  "drift": {
   "type": "number"
  },
  "signal": {
   "type": "string"
  },
  "verified": {
   "type": "boolean"
  },
  "timestamp": {
   "type": "number"
  },
  "spot_price": {
   "type": "number"
  },
  "kalshi_implied_price": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-jega-digital-7f738330/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.jega.digital](https://www.zero.xyz/host/api.jega.digital/llms.txt)
