Retrieve the status and results of a deep research task by ID. Supports both standard JSON responses and streaming for real-time updates as the research progresses. Research tasks analyze topics comprehensively using web search and AI synthesis.
curl --request GET \
--url https://api.case.dev/search/v1/research/{id} \
--header 'Authorization: Bearer <token>'{
"id": "research_abc123",
"status": "completed",
"query": "Recent developments in AI liability law",
"model": "pro",
"results": {
"summary": "Recent AI liability law developments focus on establishing clear frameworks for algorithmic accountability, with the EU leading regulatory efforts through the AI Act while the US pursues sector-specific approaches.",
"sections": [
{
"title": "EU AI Act Implementation",
"content": "The European Union's AI Act, which came into force in 2024, establishes a risk-based approach to AI regulation...",
"sources": [
{
"url": "https://example.com/ai-act-analysis",
"title": "EU AI Act: Legal Framework Analysis",
"snippet": "The AI Act introduces tiered liability based on risk assessment..."
}
]
}
],
"sources": [
{
"url": "https://example.com/ai-act-analysis",
"title": "EU AI Act: Legal Framework Analysis",
"snippet": "The AI Act introduces tiered liability based on risk assessment..."
}
]
},
"progress": 100,
"createdAt": "2024-01-15T10:30:00Z",
"completedAt": "2024-01-15T10:32:45Z"
}API key starting with sk_case_
Unique identifier for the research task
Enable streaming for real-time updates
Filter specific event types for streaming
Research status and results
Research task ID
Current status of the research task
pending, running, completed, failed Original research query
Research model used
fast, normal, pro Research findings and analysis
Show child attributes
Completion percentage (0-100)
Task creation timestamp
Task completion timestamp
Was this page helpful?
curl --request GET \
--url https://api.case.dev/search/v1/research/{id} \
--header 'Authorization: Bearer <token>'{
"id": "research_abc123",
"status": "completed",
"query": "Recent developments in AI liability law",
"model": "pro",
"results": {
"summary": "Recent AI liability law developments focus on establishing clear frameworks for algorithmic accountability, with the EU leading regulatory efforts through the AI Act while the US pursues sector-specific approaches.",
"sections": [
{
"title": "EU AI Act Implementation",
"content": "The European Union's AI Act, which came into force in 2024, establishes a risk-based approach to AI regulation...",
"sources": [
{
"url": "https://example.com/ai-act-analysis",
"title": "EU AI Act: Legal Framework Analysis",
"snippet": "The AI Act introduces tiered liability based on risk assessment..."
}
]
}
],
"sources": [
{
"url": "https://example.com/ai-act-analysis",
"title": "EU AI Act: Legal Framework Analysis",
"snippet": "The AI Act introduces tiered liability based on risk assessment..."
}
]
},
"progress": 100,
"createdAt": "2024-01-15T10:30:00Z",
"completedAt": "2024-01-15T10:32:45Z"
}