Omni Terminal returns the latest published Pre-Market Roundup by default, or an exact publ
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.
5000 (raw units)
price
16
calls / 30d
3
unique payers
2026-09-05
updated
Provider
omniterminal.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0x733f40A4FA0cd13d59aBADE04b9eD2e9acAc6457",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x733f40A4FA0cd13d59aBADE04b9eD2e9acAc6457",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 1
},
"type": "http"
},
"output": {
"example": {
"data_as_of": "2026-08-11T11:00:12.402Z",
"freshness": {
"age_seconds": 48,
"data_as_of": "2026-08-11T11:00:12.402Z",
"max_age_seconds": 259200,
"status": "fresh"
},
"generated_at": "2026-08-11T11:01:00.000Z",
"items": [
{
"canonical_url": "https://omniterminal.substack.com/p/microsofts-maia-300-push-puts-lower",
"excerpt": "A compact public excerpt from the latest published roundup, with the canonical article URL for full context.",
"kind": "pre_market_roundup",
"published_at": "2026-08-11T11:00:12.402Z",
"subtitle": "OmniTerminal Pre-Market Roundup - AI capacity expansion supports equities while macro and geopolitical risks keep hedges active.",
"title": "Microsoft's Maia 300 Push Puts Lower-Cost AI Compute in Focus",
"topics": [
"AI infrastructure",
"macro"
],
"word_count": 938
}
],
"product_version": "v1",
"publication": {
"archive_url": "https://omniterminal.substack.com/archive",
"name": "OmniTerminal"
},
"schema": "premarket_roundup.v1",
"service": "omni.premarket_roundup",
"usage": {
"examined_count": 1,
"excerpt_character_limit": 1200,
"full_article_included": false,
"item_count": 1,
"item_limit": 1
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"date": {
"description": "Optional exact publication date in YYYY-MM-DD. Omit for the latest published roundup.",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"limit": {
"default": 1,
"maximum": 5,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"builder-code": {
"info": {
"a": "bc_wttcxbb6"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://omniterminal.app/api/x402/v1/research/premarket" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://omniterminal.app/api/x402/v1/research/premarket");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://omniterminal.app/api/x402/v1/research/premarket")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1458.json, and this resource appears in /discovery/resources and /discovery/search.