The POST /research method creates an asynchronous research task which can perform a comprehensive web research. This endpoint is currently in beta, it might be subject to changes.
GET /v1/research/:id to poll for
the result, or GET /v1/research
to list all your research tasks.outputType is set to structured, you may provide a JSON structuredOutputSchema to dictate
the response format.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The natural language question for which you want to retrieve context.
"What is Microsoft's 2024 revenue?"
The type of output you want to get. Use structured for a custom-formatted response defined by structuredOutputSchema.
sourcedAnswer, structured Required only when outputType is structured. Provide a JSON schema (as a string) representing the desired response format. The root must be of type object.
Relevant only when outputType is structured. Defines whether the response should include sources. Please note that it modifies the schema of the response, see below
Defines whether the API should include images in its results.
The date from which the search results should be considered, in ISO 8601 format (YYYY-MM-DD). It must be before toDate, if provided, and later than 1970-01-01.
"2025-01-01"
The date until which the search results should be considered, in ISO 8601 format (YYYY-MM-DD). It must be later than fromDate, if provided, or than 1970-01-01.
"2025-01-01"
The domains you want to search on. By default, don't restrict the search. You can provide up to 100 domains.
["microsoft.com", "agolution.com"]The domains you want to exclude of the search. By default, don't restrict the search.
["wikipedia.org"]Relevant only when outputType is sourcedAnswer. Defines whether the answer should include inline citations.
The maximum number of results to return. The number of results will always be ≤ to maxResults.
Research task created successfully.
The unique identifier of the created research task.
"01234-abcd-56789"