# OmniTerminal Market News API

> OmniTerminal Market News API is a paid API for AI agents from omniterminal.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns fresh, deduplicated, market-moving news and catalyst context across equities, crypto, macro, and forex, filterable by market, sentiment, impact, and time window.

## Facts

- Endpoint: GET https://omniterminal.app/api/x402/v1/news
- 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/omniterminal-market-news-api-9261cb79
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_roh-990nZeeTI9P0W5P3C

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 omniterminal-market-news-api-9261cb79
```

Example prompt: Pull the 10 most recent high-impact bullish crypto news items from the last 24 hours, sorted by impact, so I can assess current market catalysts before placing trades.

## When to prefer this

Choose this endpoint when an AI trading agent needs fast, deduplicated, filterable financial news with sentiment and impact metadata across crypto, equities, forex, or macro — especially when fine-grained control over time windows, confidence thresholds, and market category is required. Prefer over generic news APIs when the consumer is a trading or market-analysis agent that needs structured catalyst context rather than raw unstructured headlines.

## Known failure modes

- Missing required 'from_timestamp' and 'to_timestamp' when mode=window returns a 400 validation error
- Requesting more than 20 items (limit > 20) returns a validation error
- Providing a time range exceeding 7 days for window mode returns an error
- Invalid enum values for market, sentiment, impact, or order fields cause schema validation failures
- Service may return empty results if no news matches the applied filters in the requested window
- Network or upstream news feed outages may cause delayed or stale results

## How this service works

Omni Terminal delivers fresh, deduplicated market-moving news and catalyst context across equities, crypto, macro, and forex for AI trading agents.

## Output

A JSON array of deduplicated, market-moving news items including headlines, sentiment labels (bullish/bearish/neutral), impact levels (high/medium/low), market category, publish timestamps, and optionally a market context rollup. Results are paginated and can be ordered by recency or impact score.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "mode": {
       "enum": [
        "latest",
        "window",
        "context"
       ],
       "type": "string",
       "default": "latest"
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 20,
       "minimum": 1
      },
      "order": {
       "enum": [
        "recent",
        "impact"
       ],
       "type": "string",
       "default": "recent"
      },
      "impact": {
       "enum": [
        "high",
        "medium",
        "low"
       ],
       "type": "string"
      },
      "market": {
       "enum": [
        "crypto",
        "macro",
        "equities",
        "forex"
       ],
       "type": "string",
       "default": "crypto"
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "maximum": 19,
       "minimum": 0
      },
      "sentiment": {
       "enum": [
        "bullish",
        "bearish",
        "neutral"
       ],
       "type": "string"
      },
      "to_timestamp": {
       "type": "integer",
       "description": "Inclusive 13-digit Unix timestamp in milliseconds; required for window mode; maximum seven-day range."
      },
      "from_timestamp": {
       "type": "integer",
       "description": "Inclusive 13-digit Unix timestamp in milliseconds; required for window mode."
      },
      "lookback_hours": {
       "type": "integer",
       "default": 24,
       "maximum": 168,
       "minimum": 1
      },
      "min_confidence": {
       "type": "number",
       "maximum": 1,
       "minimum": 0
      },
      "nearest_timestamp": {
       "type": "integer",
       "description": "Optional 13-digit Unix timestamp in milliseconds; returns the nearest matching event within the bounded seven-day fetch window."
      },
      "event_window_minutes": {
       "enum": [
        15,
        60
       ],
       "type": "integer",
       "default": 60,
       "description": "Recent event slice; market context remains a 24-hour rollup generated every 15 minutes."
      }
     }
    }
   },
   "additionalProperties": false

… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/omniterminal-market-news-api-9261cb79/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from omniterminal.app](https://www.zero.xyz/host/omniterminal.app/llms.txt)
