# Ozmium Technical Analysis Signal API

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

Returns technical analysis data including experimental BUY/SELL signals for a given trading symbol

## Facts

- Endpoint: GET https://ozmium.org/v1/ta/:sym
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ozmium-technical-analysis-signal-api-325ad463
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Fkxu7vn59yFIkw56w4xH

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-signal-api-325ad463
```

Example prompt: Pull the Ozmium technical analysis signal for BTC right now — I want to see whether it's showing a buy or sell marker and what the underlying indicators look like.

## When to prefer this

Use this endpoint when an AI agent needs a quick, low-cost technical analysis snapshot for a crypto symbol and wants a directional signal to complement its own reasoning. Best suited for agents that already have news and cross-asset context and want a TA layer. Not a standalone trading signal — use as one input among many.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error or empty data
- Network timeout or service unavailability
- Payment not processed correctly via x402 protocol resulting in 402 response
- Symbol format mismatch (e.g. wrong case or delimiter)

## How this service works

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

## Output

Returns technical analysis data for the requested symbol, including experimental BUY/SELL directional markers and supporting indicator values. The BUY/SELL signals are described as early and unproven with no established out-of-sample edge and should be corroborated with news and cross-asset 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": {
      "gran": {
       "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-signal-api-325ad463/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)
