# Ozmium BUY/SELL Signal Feed

> Ozmium BUY/SELL Signal Feed 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 experimental BUY/SELL directional bias signals with sentiment scores and conviction levels for crypto assets

## Facts

- Endpoint: GET https://ozmium.org/v1/signals
- 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-buy-sell-signal-feed-46da8463
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0oIiauyXXMcJcjqiXqjoG

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-buy-sell-signal-feed-46da8463
```

Example prompt: What are Ozmium's current buy/sell signals for ETH — give me the bias, sentiment score, and conviction level?

## When to prefer this

Use this endpoint when you need a quick directional bias signal (buy/sell/neutral) with quantified sentiment and conviction for a crypto asset, particularly on Base mainnet context. Best suited for agents augmenting DeFi trading workflows or cross-referencing with news and on-chain data. Note: this is an experimental, unproven signal feed with no established out-of-sample edge — always corroborate before acting.

## Known failure modes

- Symbol not found or unsupported: empty or null signals object returned
- Rate limit or payment failure: 402 Payment Required if USDC micropayment not fulfilled
- Malformed query parameter: invalid symbols string may return empty results
- Service unavailable: 5xx error if the experimental API is down or under maintenance
- No signals available: signals may be sparse or absent for low-liquidity assets

## 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 containing per-symbol signal data including: bias (e.g. BUY/SELL/NEUTRAL string), sentiment (numeric score), and conviction (numeric score), along with the network 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": {
        "signals": {
         "type": "object",
         "properties": {
          "ETH": {
           "type": "object",
           "properties": {
            "bias": {
             "type": "string"
            },
            "sentiment": {
             "type": "number"
            },
            "conviction": {
             "type": "number"
            }
           }
          }
         }
        }
       }
      },
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-buy-sell-signal-feed-46da8463/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)
