# Ozmium Ranked Leverage Trade Ideas

> Ozmium Ranked Leverage Trade Ideas 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 LONG and SHORT leverage trade setups with entry, stop, target, and suggested leverage across crypto, forex, energy, metals, indices, and stocks

## Facts

- Endpoint: GET https://ozmium.org/v1/ideas
- 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-ranked-leverage-trade-ideas-665ed860
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nnUYCzfpJ1dPosdIqeKau

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-ranked-leverage-trade-ideas-665ed860
```

Example prompt: Pull the top 10 ranked leverage trade ideas from Ozmium right now — I want the best long and short setups across all categories including crypto, forex, gold, oil, and stocks, with entry, stop, target, and suggested leverage for each.

## When to prefer this

Use this endpoint when an agent needs pre-scored, actionable leverage trade setups across multiple asset classes in a single call, rather than computing signals from raw price data. Prefer this over generic market data APIs when the user wants ranked, ready-to-act ideas with defined entry/stop/target levels and a leverage recommendation.

## Known failure modes

- No ideas available if market data is stale or service is temporarily down (likely 503 or empty array)
- Invalid limit parameter format may return 400 or be ignored
- Payment failure (402) if x402 USDC payment of $0.01 is not included or rejected
- Rate limiting if called too frequently without valid payment headers

## How this service works

Ranked LONG and SHORT leverage setups across EVERY category- crypto, forex (majors + crosses incl. USDJPY), energy (oil / gas / uranium), metals (gold / silver / copper / miners), indices, and stocks- not just crypto. Full details: GET /v1.

## Output

An array of ranked trade ideas, each containing: symbol (e.g. BTCUSD, USDJPY), direction (LONG or SHORT), entry price, stop price, target price, edge score (numeric), suggested leverage, and an overall worthwhileness rating for the current session. Covers crypto, forex, energy, metals, indices, and equities.

## 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"
      }
     }
    }
   },
   "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"
           }
          }
         }
        },
        "worthwhileness": {
         "type": "string"
        }
       }
      },
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-ranked-leverage-trade-ideas-665ed860/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)
