# Terminal Real-Time Crypto, Forex & Global News Feed

> Terminal Real-Time Crypto, Forex & Global News Feed is a paid API for AI agents from terminalverse.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches AI-aggregated real-time news posts covering crypto, forex, prediction markets, macro, geopolitics, and global markets, with optional full-text search.

## Facts

- Endpoint: GET https://terminalverse.com/api/posts
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/terminal-real-time-crypto-forex-global-news-feed-ad75eff4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3lq4uwda5LKjOQhUzE1wr

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 terminal-real-time-crypto-forex-global-news-feed-ad75eff4
```

Example prompt: Pull the latest posts from Terminal's AI news feed about Bitcoin ETF approval — I want to see what's breaking right now across crypto and macro sources.

## When to prefer this

Use this endpoint when you need real-time, AI-curated financial and geopolitical news specifically focused on crypto, forex, and trading intelligence — especially when you want fast-breaking market news with source attribution and optional full-text search across posts.

## Known failure modes

- Empty array returned when search query matches no posts
- Payment required (402) if x402 micropayment header is missing or invalid
- Rate limiting if too many requests are made in quick succession
- Malformed query string may return unexpected or empty results
- Offset parameter ignored when search query is provided

## How this service works

Terminal is the fastest AI-aggregated news and trading intelligence feed. Real-time crypto, forex, prediction markets, macro, geopolitics, and global news — built for traders who move first.

## Output

An array of up to 100 news post objects, each containing a post ID, text content, category, source name, creation timestamp, optional link URL, media type flag, and optional Telegram post link.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "description": "Full-text search query. Returns up to 100 matching posts."
  },
  "offset": {
   "type": "integer",
   "description": "Pagination offset. Ignored when q is provided."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array",
 "items": {
  "type": "object",
  "properties": {
   "id": {
    "type": "string"
   },
   "text": {
    "type": "string",
    "nullable": true
   },
   "category": {
    "type": "string",
    "nullable": true
   },
   "link_url": {
    "type": "string",
    "nullable": true
   },
   "has_media": {
    "type": "boolean"
   },
   "created_at": {
    "type": "string",
    "format": "date-time"
   },
   "media_type": {
    "type": "string",
    "nullable": true
   },
   "source_name": {
    "type": "string"
   },
   "tg_post_link": {
    "type": "string",
    "nullable": true
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/terminal-real-time-crypto-forex-global-news-feed-ad75eff4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from terminalverse.com](https://www.zero.xyz/host/terminalverse.com/llms.txt)
