Performs deep research by conducting multi-step analysis, gathering information from multiple sources, and providing comprehensive insights. Ideal for legal research, case analysis, and due diligence investigations.
curl --request POST \
--url https://api.case.dev/search/v1/research \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"instructions": "<string>",
"query": "<string>",
"model": "normal",
"outputSchema": {}
}
'{
"researchId": "research_abc123",
"model": "normal",
"results": {
"summary": "Comprehensive analysis of contract law precedents...",
"sources": [
"Supreme Court ruling in...",
"Federal statute..."
],
"analysis": "Key findings indicate..."
}
}API key starting with sk_case_
Research configuration
Research instructions or query
Alias for instructions (for convenience)
Research quality level - fast (quick), normal (balanced), pro (comprehensive)
fast, normal, pro Optional JSON schema to structure the research output
Was this page helpful?
curl --request POST \
--url https://api.case.dev/search/v1/research \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"instructions": "<string>",
"query": "<string>",
"model": "normal",
"outputSchema": {}
}
'{
"researchId": "research_abc123",
"model": "normal",
"results": {
"summary": "Comprehensive analysis of contract law precedents...",
"sources": [
"Supreme Court ruling in...",
"Federal statute..."
],
"analysis": "Key findings indicate..."
}
}