Launches a one-time wide and deep research task on the web.
Receive structured output on a webhook when the task completes
output_schema to receive data in a specific JSON schema format, and optionally add webhook notifications.String describing the research task in natural language."What are the latest developments in quantum computing from the past week?"
User's timezone for contextual awareness (e.g. 'America/Los_Angeles')
"America/Los_Angeles"
User's coarse location in the format: city, region_code, country_name
"San Francisco, CA, US"
JSON Schema for structured output. Takes precedence over task_spec if both provided.
{
"items": {
"properties": {
"title": {
"description": "Title of the development",
"type": "string"
},
"summary": {
"description": "Brief summary",
"type": "string"
},
"source_url": {
"description": "URL for more details",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}Deprecated but still supported. Use output_schema instead.
If true, email notifications will be skipped and only webhook notifications will be sent.
Default: true (sends webhooks only).true
Optional webhook URL to receive results when the research task completes
"https://example.com/webhook"
Webhook payload format. Slack incoming webhook URLs require 'slack'.
scout, slack, zapier "scout"
Successful Response
Response for creating a research task.
Unique identifier for this research task
URL to view task progress and results
Current status of the research task
queued, running, succeeded, failed Echoes the webhook URL configured for this task, if provided