Skip to main content

Overview

Use POST /responses on the AI Router with the same request shape as the OpenAI Responses API: model, input, and a tools array that includes a built-in web search entry. The router forwards search to each provider’s native capability when the model supports it. There is no separate Perplexity or Parallel tool in the router; the supported contract is OpenAI-style web_search / web_search_preview tools on /responses, mapped to Anthropic and Google where applicable.
Prefer models whose metadata indicates web search support. See Supported Models and your workspace model list.

Quick start

Use the OpenAI SDK against the AI Router base URL and call the Responses API directly.
curl -sS -X POST "https://api.orq.ai/v2/router/responses" \
  -H "Authorization: Bearer ${ORQ_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/o3",
    "input": "What are the latest changes to the OpenAI Responses API?",
    "tools": [{ "type": "web_search_preview" }]
  }'
Endpoint: POST https://api.orq.ai/v2/router/responses

Tool definitions

Request tools entries use the discriminated type field, matching the gateway schema.

web_search_preview

FieldTypeDescription
type"web_search_preview"Identifies the preview web search tool.
domainsstring[]Optional allowlist of domains to restrict search.
search_context_sizestringOptional. One of low, medium, high — how much context to retrieve per result.
user_locationobjectOptional. Hints for localized results (type, city, country, region, timezone).
FieldTypeDescription
type"web_search"Stable web search tool type.
search_context_sizestringOptional. low, medium, high.
user_locationobjectOptional. Same shape as above.
filtersobjectOptional. e.g. allowed_domains (nullable array) to restrict domains.
The router accepts the full tool object on /responses. OpenAI requests pass tools through to the upstream Responses API. Anthropic and Google paths map web_search / web_search_preview to native web search tools; fields the upstream API does not support may be ignored.

include (optional)

You can ask for additional fields on web search output items, aligned with OpenAI Responses include:
ValueMeaning
web_search_call.resultsInclude detailed search results where available.
web_search_call.action.sourcesInclude source URLs and titles on the action.
Example request body:
{
  "model": "openai/gpt-4o",
  "input": "Summarize today’s headlines in finance.",
  "tools": [{ "type": "web_search_preview" }],
  "include": ["web_search_call.action.sources"]
}

Output: web_search_call

Responses can contain output items with "type": "web_search_call":
FieldDescription
idItem id.
type"web_search_call".
statusLifecycle status for the call.
actionOptional. type may be search, open_page, or find, plus fields like query, url, pattern, and sources (url + title).
Exact payload shape matches what the provider returns; streaming uses the same event model as other /responses streams.

Provider behavior

OpenAI

Tools and include are passed to client.responses.create with your model id (for example openai/o3). Use the same parameters OpenAI documents for web search on the Responses API.

Anthropic

web_search and web_search_preview in tools are mapped to Anthropic’s web search tool for the Messages path used under /responses.

Google Gemini

The same tool types enable Google Search grounding (googleSearch) for Gemini models that support it.

tool_choice

You can steer the model toward web search using the structured tool_choice form, for example:
{
  "tool_choice": { "type": "web_search_preview" }
}
Supported tool_choice.type values for built-in tools are defined in the API schema (including web_search, web_search_preview, and related literals). Strings none, auto, and required behave as usual.

Streaming

Set "stream": true on the same JSON body. The server responds with text/event-stream and events in the OpenAI-style response stream format.
curl -sS -N -X POST "https://api.orq.ai/v2/router/responses" \
  -H "Authorization: Bearer ${ORQ_API_KEY}" \
  -H "Content-Type: application/json" \
  -H "Accept: text/event-stream" \
  -d '{
    "model": "openai/o3",
    "input": "What is the current phase of the moon for San Francisco?",
    "tools": [{ "type": "web_search_preview" }],
    "stream": true
  }'

Code examples

Set ORQ_API_KEY (or pass the key explicitly) so the Authorization header resolves.

Non-streaming

curl -sS -X POST "https://api.orq.ai/v2/router/responses" \
  -H "Authorization: Bearer ${ORQ_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/o3",
    "input": "What is the current phase of the moon for San Francisco?",
    "tools": [{ "type": "web_search_preview" }],
    "include": ["web_search_call.action.sources"]
  }'

Streaming

curl -sS -N -X POST "https://api.orq.ai/v2/router/responses" \
  -H "Authorization: Bearer ${ORQ_API_KEY}" \
  -H "Content-Type: application/json" \
  -H "Accept: text/event-stream" \
  -d '{
    "model": "openai/o3",
    "input": "What is the current phase of the moon for San Francisco?",
    "tools": [{ "type": "web_search_preview" }],
    "stream": true
  }'
For cURL streaming, -N disables buffering so SSE lines show up as they arrive. Parse data: lines from the response body the same way you would against OpenAI’s Responses stream.

See also