# Omni Terminal Pre-Market Roundup

> Omni Terminal Pre-Market Roundup is a paid API for AI agents from omniterminal.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the latest published Pre-Market Roundup as bounded editorial metadata and sanitized excerpts with canonical article links for agent research and citation.

## Facts

- Endpoint: GET https://omniterminal.app/api/x402/v1/research/premarket
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omni-terminal-pre-market-roundup-2bf67606
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MfDA_em5n5imhjvaSzhKH

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 omni-terminal-pre-market-roundup-2bf67606
```

Example prompt: Pull the latest Pre-Market Roundup from Omni Terminal — I want the editorial summary and article links so I can review what's moving markets before the open.

## When to prefer this

Choose this endpoint when an agent needs structured, citable pre-market editorial content with article links, rather than raw unfiltered news feeds. Ideal for morning briefing workflows, research report generation, or any use case requiring bounded, sanitized summaries of pre-market activity with canonical source attribution.

## Known failure modes

- No roundup published yet today — returns empty or prior day's result
- limit parameter out of range (must be 1-5) — validation error
- Payment not processed (x402 protocol) — 402 Payment Required before content is returned
- Service unavailable or roundup data not yet ingested — 503 or empty response

## How this service works

Omni Terminal returns the latest published Pre-Market Roundup by default, or an exact publication date, as bounded editorial metadata and sanitized excerpts with canonical article links for agent research and citation.

## Output

Returns bounded editorial metadata for the latest Pre-Market Roundup(s), including sanitized article excerpts and canonical source URLs suitable for agent research and citation. Up to 5 roundups can be returned per call.

## 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": {
      "date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Optional exact publication date in YYYY-MM-DD. Omit for the latest published roundup."
      },
      "limit": {
       "type": "integer",
       "default": 1,
       "maximum": 5,
       "minimum": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/omni-terminal-pre-market-roundup-2bf67606/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)
