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.
Prediction market trading
oruk turns live radio, TV, and public-source speech into structured, timestamped signals that can feed watchlists, bots, dashboards, and manual trading workflows.
Radio callers, regional stations, live hearings, and public feeds often move before clean written articles appear. oruk normalizes them into searchable events.
Events include source names, quotes, timestamps, corroboration counts, and stable IDs so your workflow can distinguish rumor from supported signal.
Pull filtered stories on demand, stream every qualifying update, or route high-impact events into your own dashboards and trading tools.
Workflow
The goal is not generic headlines. The goal is a structured, fast, source-linked feed that can trigger the next workflow step.
Implementation
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);
}
});