Live demos
See RunoxAI in action
Explore interactive demos and code examples showing what you can build with RunoxAI's API.
SearchInteractive
Neural Search Demo
See how RunoxAI understands semantic meaning to return results that match intent, not just keywords.
Try it →WebsetsInteractive
Websets Explorer
Build structured datasets from the live web. Watch RunoxAI extract, validate, and enrich data in real-time.
Try it →LivecrawlInteractive
Livecrawl Playground
Fetch real-time content from any URL and see how RunoxAI parses and indexes it instantly.
Try it →ResearchAgent Demo
Deep Research Agent
Chain multiple searches together with an LLM to synthesize comprehensive research reports in seconds.
Try it →RecruitingIndustry Demo
Talent Search Pipeline
Find and qualify candidates from the live web. See how AI agents combine search, enrichment, and outreach.
Try it →Sales IntelligenceIndustry Demo
Prospect Enrichment
Automatically enrich CRM leads with up-to-date company and contact data sourced from the live web.
Try it →Get started in minutes
Integrate RunoxAI into any JavaScript or Python project.
Basic search
import RunoxAI from 'runoxai'
const client = new RunoxAI({ apiKey: process.env.RUNOXAI_API_KEY })
const results = await client.search({
query: 'latest AI safety research papers 2025',
numResults: 10,
useAutoprompt: true,
})
console.log(results.results)Livecrawl
const results = await client.search({
query: 'OpenAI blog announcements',
numResults: 5,
livecrawl: 'always', // always fetch fresh content
contents: {
text: { maxCharacters: 2000 },
},
})