Launches a one-time wide and deep research task on the web.
Using Webhooks & a Structured Output Schema
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"
Task specification with JSON output schema for structured results
{
"output_schema": {
"json_schema": {
"properties": {
"developments": {
"items": {
"properties": {
"title": {
"description": "Title of the development",
"type": "string"
},
"summary": {
"description": "Brief summary",
"type": "string"
},
"source": {
"description": "URL for more details",
"type": "string"
}
},
"required": ["title", "summary", "source"],
"type": "object"
},
"type": "array"
}
},
"required": ["developments"],
"type": "object"
},
"type": "json"
}
}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