# Ozmium Market Edge Summary

> Ozmium Market Edge Summary 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 the single best LONG and SHORT trade ideas across all markets plus per-category leaders and breadth counts in one call

## Facts

- Endpoint: GET https://ozmium.org/v1/ideas/summary
- 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-market-edge-summary-475e9c1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xG03vCaW6TQ-8g8iB-Wlq

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-market-edge-summary-475e9c1b
```

Example prompt: What's the single best long and short trade idea across every market right now — and which crypto, forex, energy, metals, indices, and stocks categories have the strongest edges?

## When to prefer this

Use this endpoint when you need a single call to get the global view of all trading edges across every market category — it's the fastest way to answer 'where is the best opportunity right now?' without querying individual markets separately. Prefer this over per-market endpoints when breadth and cross-category comparison is the goal.

## Known failure modes

- No edge data available if markets are closed or data feed is stale
- 402 Payment Required if USDC payment is not attached
- Rate limiting if too many calls are made rapidly
- Empty results if no markets currently carry a detectable edge

## How this service works

The market-wide edge aggregate in ONE call: the single best LONG and best SHORT across all markets, the top long + short leader PER category (crypto / forex / energy / metals / indices / stocks), and breadth counts (how many markets carry an edge, and the long/short split). The "what is the state of edges across every market, and where should I look?" read a human asks an agent- e.g. "find me the best market edge right now". GET /v1/ideas/summary. Full details: GET /v1.

## Output

Returns the overall best LONG and best SHORT trade ideas (symbol, direction, entry, stop, target, edge score, suggested leverage), the top long and short leader per category (crypto, forex, energy, metals, indices, stocks), and market breadth counts (total markets with an edge, how many are long vs short).

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "counts": {
         "type": "object",
         "properties": {
          "longs": {
           "type": "number"
          },
          "total": {
           "type": "number"
          },
          "shorts": {
           "type": "number"
          }
         }
        },
        "bestLong": {
         "type": "object",
         "properties": {
          "sym": {
           "type": "string"
          },
          "edge": {
           "type": "number"
          },
          "stop": {
           "type": "number"
          },
          "entry": {
           "type": "number"
          },
          "target": {
           "type": "number"
          },
          "direction": {
           "type": "string"
          },
          "suggestedLeverage": {
           "type": "number"
          }
         }
        }
       }
      },
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-market-edge-summary-475e9c1b/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)
