POST
/
deep-research
Deep research agent (Pro only)
curl --request POST \
  --url https://apigcp.trynia.ai/v2/deep-research \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "Compare the top 3 state management solutions for React with pros and cons",
  "output_format": "<string>"
}'
{
  "data": {},
  "citations": [
    {
      "url": "<string>",
      "title": "<string>",
      "snippet": "<string>"
    }
  ],
  "status": "completed"
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

Body

application/json
query
string
required

Research question for deep analysis

Example:

"Compare the top 3 state management solutions for React with pros and cons"

output_format
string

Optional structure hint for the output (e.g., 'comparison table', 'pros and cons list')

Response

Research completed successfully

data
object

Structured research data based on the query

citations
object[]

Sources cited in the research

status
enum<string>
Available options:
completed,
failed