# Ozmium Alpha Stack API

> Ozmium Alpha Stack API is a paid API for AI agents from ozmium.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns ranked arbitrage routes, scalp trade ideas, and composite technical analysis signals for a set of crypto symbols in a single call

## Facts

- Endpoint: GET https://ozmium.org/v1/alpha
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ozmium-alpha-stack-api-e5337a0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZyL81wb4T2il5Oe-OJv4U

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 ozmium-alpha-stack-api-e5337a0e
```

Example prompt: Give me the full alpha stack for cbBTC with a 100 USDC budget using my wallet 0xAbC...123 — I want ranked arbitrage routes into cbBTC, top 6 scalp trade ideas, and composite TA signals for BTC, ETH, and SOL.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call alpha bundle combining arbitrage routing, scalp trade ideas, and TA signals rather than calling separate specialized endpoints. Ideal for autonomous trading agents that need to make quick decisions across multiple crypto pairs with minimal latency overhead.

## Known failure modes

- Missing required query params returns an error — target, symbols are expected
- Invalid taker wallet address format may cause route computation to fail
- Unknown or unsupported symbols may return empty ideas/signals arrays
- Rate limiting or payment failure (x402) returns 402 Payment Required
- Network congestion on Base may cause stale price data in signals

## How this service works

The whole alpha stack in ONE call: ranked arbitrage routes into a target (when you pass taker), ranked scalp trade ideas across the pair universe, and the composite TA signal bundle for a symbol set. GET /v1/alpha?target=cbBTC&budget=100&taker=0x..&symbols=BTC,ETH,SOL&limit=6. Full details: GET /v1.

## Output

Returns a JSON object containing: ranked arbitrage routes into the target token, an array of scalp trade ideas (each with symbol, direction, entry, stop, target, edge score, suggested leverage), and a composite TA/sentiment signal bundle keyed by symbol.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "string"
      },
      "symbols": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "ideas": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "sym": {
            "type": "string"
           },
           "edge": {
            "type": "number"
           },
           "stop": {
            "type": "number"
           },
           "entry": {
            "type": "number"
           },
           "target": {
            "type": "number"
           },
           "direction": {
            "type": "string"
           },
           "suggestedLeverage": {
            "type": "number"
           }
          }
         }
        },
        "signals": {
         "type": "object",
         "properties": {
          "ETH": {
           "type": "object",
           "properties": {
            "sentiment": {
             "type": "number"
            }
           }
          }
         }
        }
       }
      },
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-alpha-stack-api-e5337a0e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ozmium.org](https://www.zero.xyz/host/ozmium.org/llms.txt)
