# Global Alpha Flow Oracle

> Global Alpha Flow Oracle is a paid API for AI agents from global-alpha-flow-oracle.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns live crypto market intelligence for a given trading pair, including current price, 24h stats, RSI/MACD/EMA/ATR technical indicators, order block demand/supply zones, and volume profile metrics sourced from Binance spot data.

## Facts

- Endpoint: POST https://global-alpha-flow-oracle.vercel.app/api/oracle
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/global-alpha-flow-oracle-840dda0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CoQn5Vn4-BPuv-VaLeVL_

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 global-alpha-flow-oracle-840dda0f -d '<json body>'
```

Example prompt: Pull the full technical analysis for BTC on the 4h timeframe — I want the RSI, MACD, EMA 20/50/200, ATR, order block demand and supply zones, and the volume profile CVD and buy pressure.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-dimensional crypto market snapshot in a single call — combining price action, momentum indicators (RSI, MACD), trend context (EMA, ATR), microstructure (order blocks), and volume intelligence (CVD, taker delta, value area) sourced live from Binance spot. Prefer it over generic price feeds when the agent or user needs actionable trading intelligence rather than just a price quote, and over individual indicator APIs when consolidation into one call matters for latency or cost efficiency.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error — ensure the symbol is a valid Binance pair (e.g. BTC or BTCUSDT)
- Unsupported or malformed timeframe value may cause computation failure
- Binance API upstream outage or rate limiting may cause delayed or failed data retrieval
- Payment failure or insufficient USDC balance blocks the request before execution
- Missing required 'symbol' field returns a validation error

## How this service works

Live crypto market intelligence from Binance spot data: price, 24h volume, RSI/MACD/EMA/ATR indicators, order block levels and volume-profile metrics.

## Output

Returns a JSON object with the trading pair and symbol, a price object containing last price, 24h change percent, 24h high/low, and VWAP; a technicalIndicators object with RSI-14 and signal, MACD (12/26/9) histogram and signal line, EMA at 20/50/200 periods, ATR-14, and a trend bias label; an orderBlocks object listing demand and supply zones with volume strength, mitigation status, and distance from current spot; and a volumeMetrics object covering 24h base/quote volume, relative volume, taker delta, cumulative volume delta (CVD), buy pressure percentage, and a 70% value-area volume profile.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Crypto ticker to analyze. Bare tickers are quoted in USDT (BTC -> BTCUSDT); a full Binance pair such as ETHBTC also works."
  },
  "timeframe": {
   "enum": [
    "15m",
    "1h",
    "4h",
    "1d",
    "1w"
   ],
   "type": "string",
   "default": "4h",
   "description": "Candle timeframe the analysis is computed on."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/global-alpha-flow-oracle-840dda0f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from global-alpha-flow-oracle.vercel.app](https://www.zero.xyz/host/global-alpha-flow-oracle.vercel.app/llms.txt)
