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

Prediction market trading

Catch market-moving catalysts before they settle into consensus.

oruk turns live radio, TV, and public-source speech into structured, timestamped signals that can feed watchlists, bots, dashboards, and manual trading workflows.

Catalyst radar live
4s event refresh loop
SSE streaming delivery
xN source corroboration
API bot-ready payloads
policy Officials shift language before markets reprice. speech source, quote, timestamp
weather Local broadcasts surface impact before national wires. region, source, severity
sports Injury, lineup, and venue reports become structured triggers. team, location, confidence
macro Central bank and fiscal comments land in a live stream. topic filters, event ids
Catalyst discovery

Monitor the messy sources markets miss.

Radio callers, regional stations, live hearings, and public feeds often move before clean written articles appear. oruk normalizes them into searchable events.

Audit trail

Every signal carries evidence.

Events include source names, quotes, timestamps, corroboration counts, and stable IDs so your workflow can distinguish rumor from supported signal.

Execution layer

Use alerts, SSE, or REST.

Pull filtered stories on demand, stream every qualifying update, or route high-impact events into your own dashboards and trading tools.

Workflow

From live speech to a tradeable alert.

The goal is not generic headlines. The goal is a structured, fast, source-linked feed that can trigger the next workflow step.

  1. 01 Track markets Filter for event categories, regions, entities, impact scores, and topics tied to active contracts.
  2. 02 Score evidence Use corroboration, confidence, source diversity, and timestamp age before deciding what is actionable.
  3. 03 Route updates Send new stories and every material update to bots, watchlists, Slack, Discord, notebooks, or execution systems.
  4. 04 Review after Use stable event IDs and source evidence to inspect what the system knew and when it knew it.

Implementation

Stream a market-moving feed.

Trader access includes real-time API and SSE so a market workflow can react without polling.

const es = new EventSource(
  "https://api.oruk.ai/v1/stream?api_key=ork_YOUR_KEY&min_impact=7"
);

es.addEventListener("story", event => {
  const story = JSON.parse(event.data);
  if (story.category === "politics" || story.category === "economy") {
    routeToWatchlist(story.id, story.headline, story.corroboration);
  }
});