v3
latestOpenAPI 3.1.02026-08-0431146.5 KBReturns comprehensive research-grade answers with multi-step reasoning
Research goes beyond a single web search. In response to your question, it runs multiple searches, reads through the sources, and synthesizes everything into a thorough, well-cited answer. Use it when a question is too complex for a simple lookup, and when you need a response you can actually trust and verify.
post/v1/research
Request body
Example request
{
"input": "Which global cities improved air quality the most over the past 10 years, and what measurable actions contributed?",
"research_effort": "lite",
"source_control": {
"include_domains": [
"nytimes.com",
"bbc.com"
],
"exclude_domains": [
"spam-site.com",
"other-site.com"
],
"boost_domains": [
"nytimes.com",
"wired.com"
]
},
"output_schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"gtin": {
"type": [
"string",
"null"
]
}
},
"required": [
"name",
"gtin"
],
"additionalProperties": false
}
}Response
In synchronous mode (background: false, the default), a JSON object containing a comprehensive answer with citations and supporting search results. In background mode (background: true), a JSON object with a task handle that you can poll or stream for the final result.
Example response
{
"output": {
"content_type": "text",
"sources": [
{
"url": "https://sustainablemobility.iclei.org/air-pollution-beijing/",
"title": "Clearing the skies: how Beijing tackled air pollution & what lies ahead",
"snippets": [
"The city actively coordinated air pollution control measures with surrounding areas, such as the Beijing-Tianjin-Hebei region."
]
}
]
},
"warnings": []
}