# Three capabilities, real example data, no invented numbers

What runs through the gateway today, by capability, not by vendor name.

## web.search -- search the web through one contract

Three fixture providers answer the same web.search capability today: a neural search endpoint, a freshness-tuned realtime search endpoint, and a structured single-URL extractor. discover routes a request to whichever fits, and inspect shows the exact input and output shape before anything runs.

- exa / search -- neural web search, ranked results with content snippets
- octen / realtime-search -- real-time web search tuned for freshness over breadth
- apify / web-scraper-actor -- structured extraction from a specific URL via a hosted Actor run

## company.enrich -- enrich a company from a domain or name

- firmographic and contact enrichment for a company domain
- company and person enrichment from a broad identity graph
- lightweight synchronous company lookup

## media.generate -- generate images, voice, and video

- text-to-image generation
- text-to-speech voice generation
- short-form text/image-to-video generation

## For agents

Every run carries a versioned contract; output shapes below are the real ones inspect returns for each provider.

- **exa / search output**: { results: { url, title, snippet }[] }
- **octen / realtime-search output**: { results: { url, title, publishedAt }[] }
- **apify / web-scraper-actor output**: { items: Record<string, unknown>[] }
