Prediction Markets AI Agent Context Fastest News API Live Demo Agent Trial Log In Sign Up

World's Fastest News API

The shortest path from live speech to structured intelligence.

oruk is engineered around speed: ingest live sources, transcribe speech, extract events, corroborate sources, and publish structured payloads to the surfaces your product already uses.

Delivery surfaces live
REST queries and lookup
SSE real-time stream
MCP agent tooling
JSON source-linked events
feed Public latest-stories feed for immediate integration. GET /v1/stories/feed
search Authenticated search across current and historical events. GET /v1/stories?q=...
stream SSE emits story and update events into live systems. GET /v1/stream
agent MCP tools expose the same source-linked context. npx -y oruk-mcp
Fast ingest

Speech is treated as primary data.

The pipeline watches live audio and structured sources continuously, so downstream users do not have to wait for written recaps.

Structured payloads

Events arrive ready for software.

Stories include IDs, timestamps, categories, regions, impact, confidence, topics, source lists, quotes, and corroboration metadata.

Many interfaces

Use the surface that matches the job.

Start with the public feed, move to authenticated search, connect SSE for live products, and add MCP when agents need context.

Workflow

Build once, route everywhere.

The same event model can power a product feed, an alert system, an analyst dashboard, a trading workflow, and an AI agent.

  1. 01 Prototype publicly Use the public feed to test rendering, category logic, and story shapes without auth.
  2. 02 Add key Unlock authenticated filters, deeper search, story details, sources, and stats.
  3. 03 Stream live Use SSE on Trader or Enterprise to push events into live products as soon as they are generated.
  4. 04 Audit results Preserve story IDs and source fields so every downstream decision can be traced back to live evidence.

Implementation

Fetch the live feed.

The public feed is the simplest way to test the data model. Add an API key for authenticated search and real-time streams.

curl "https://api.oruk.ai/v1/stories/feed?limit=10&since_hours=4"

curl -H "X-API-Key: ork_YOUR_KEY" \
  "https://api.oruk.ai/v1/stories?q=tariffs&limit=20"

curl -N -H "X-API-Key: ork_YOUR_KEY" \
  "https://api.oruk.ai/v1/stream"