Conducts comprehensive research using advanced language models with real-time search capabilities.
Security
BearerAuth
- Lantern API serverhttps://api-gateway.agenthq.withlantern.com/v1/enrich/research
- Local API serverhttp://localhost:8000/v1/enrich/research
curl -i -X POST \
https://api-gateway.agenthq.withlantern.com/v1/enrich/research \
-H 'Authorization: Bearer <YOUR_ApiToken_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"query": "Research the latest developments in renewable energy storage technology",
"options": {
"format_json": false
},
"agent_type": "funding"
}'Successful Response
Any of:
Deep research response with comprehensive analysis
string
Any of:
AI confidence score (0.0-1.0) or null if disabled
[ 0 .. 1 ]
number
Any of:
Approximate remaining credit balance. Use GET /v1/credits/remaining for precise balance.
integer
Time taken to process the request in milliseconds
Response
{ "success": true, "query": "string", "response": "string", "confidence": 1, "credits_consumed": 0, "credits_remaining": 0, "token_usage": { "prompt_tokens": 0, "completion_tokens": 0, "total_tokens": 0 }, "processing_time_ms": 0, "agent_used": "string" }