# Ozmium Technical Analysis Scan

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

Returns experimental BUY/SELL signal feed based on technical analysis scanning across assets

## Facts

- Endpoint: GET https://ozmium.org/v1/ta/scan
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ozmium-technical-analysis-scan-db662e9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a6s91vg8Im-mFWRN1vKSm

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-technical-analysis-scan-db662e9b
```

Example prompt: Pull the latest Ozmium TA scan and tell me which assets are showing buy or sell signals right now — and remind me this is experimental so I should cross-check with news before acting.

## When to prefer this

Use this endpoint when you need a quick automated technical-analysis signal sweep across crypto assets and are willing to pay a $0.01 USDC micropayment per call. Best suited for agents building multi-signal pipelines where Ozmium TA is one input among several (news, cross-asset context). Do NOT rely on it as a sole trading signal given its explicitly experimental, unproven status.

## Known failure modes

- Payment required (402): missing or invalid x402 USDC micropayment header
- No signals returned if market data is unavailable or scan finds no qualifying assets
- Stale or incomplete data if underlying price feeds are lagging
- HTTP errors if the endpoint is under maintenance or experimental breakage

## How this service works

EXPERIMENTAL / WIP- an early, unproven BUY/SELL signal feed (no established out-of-sample edge, not advice); corroborate with news + cross-asset context before acting. Full details: GET /v1.

## Output

Returns a JSON object with ok boolean and market scan data containing experimental BUY/SELL technical analysis signals across tracked assets. Output is explicitly flagged as experimental with no established out-of-sample edge and should be corroborated with other context.

## 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": {
      "symbols": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "ok": {
         "type": "boolean"
        }
       }
      },
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-technical-analysis-scan-db662e9b/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)
