# Ozmium Ideas Asset Signal

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

Returns a composite technical trading signal for a named symbol including direction, leverage, entry/stop/target, edge score, projected return-on-margin, and cross-category rank.

## Facts

- Endpoint: GET https://ozmium.org/v1/ideas/asset/:sym
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ozmium-ideas-asset-signal-d1756337
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_igea4dTMjJEMgxFNeiHKL

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-ideas-asset-signal-d1756337
```

Example prompt: Is there a worthwhile leverage edge on ETH right now, and if so should I go long or short — give me the entry, stop, target, and suggested leverage.

## When to prefer this

Use this endpoint when you need a complete, actionable leveraged trading thesis for a specific asset — including direction, risk parameters, and cross-asset ranking — rather than just a price quote or raw indicator value. Ideal before constructing a Gains Network or Morpho position via sibling endpoints.

## Known failure modes

- Unknown or unsupported symbol returns 404 or empty idea
- No edge detected returns hasEdge: false with null idea fields
- Network/pricing service unavailable returns 5xx
- Missing sym path parameter causes 400 bad request
- Payment not provided or insufficient returns 402 Payment Required

## How this service works

Does a NAMED market have a worthwhile leverage edge RIGHT NOW- and what would be BETTER to do instead / as a hedge? For one symbol: the composite technical signal + 52-week range + momentum -> the stronger of a long or short thesis (or none), with direction, range-survival leverage, entry / stop / target / liquidation, edge, projected return-on-margin, min collateral, and the /v1/tx/risk/open inputs- PLUS its rank across the whole cross-category field and  Full details: GET /v1.

## Output

Returns a JSON object containing: the symbol, a boolean hasEdge indicating if a real edge exists, and an idea object with direction (long/short), edge score, suggestedLeverage, entry, stop, target prices, plus cross-category rank and inputs ready for /v1/tx/risk/open.

## 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"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "sym": {
       "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": {
        "sym": {
         "type": "string"
        },
        "idea": {
         "type": "object",
         "properties": {
          "sym": {
           "type": "string"
          },
          "edge": {
           "type": "number"
          },
          "stop": {
           "type": "number"
          },
          "entry": {
           "type": "number"
          },
          "target": {
           "type": "number"
          },
          "direction": {
           "type": "string"
          },
          "suggestedLeverage": {
           "type": "number"
          }
         }
        },
        "hasEdge": {
         "type": "boolean"
        }
       }
      },
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-ideas-asset-signal-d1756337/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)
