Skip to main content

Documentation Index

Fetch the complete documentation index at: https://usenaive.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

query
string
required
Research question
depth
string
default:"quick"
"quick" | "thorough" | "exhaustive"

Quick (inline response)

curl -X POST https://api.usenaive.ai/v1/search/research \
  -H "Authorization: Bearer nv_sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "query": "Compare React Server Components vs Astro Islands", "depth": "quick" }'
{
  "synthesis": "Based on multiple sources...",
  "sources": [
    { "url": "...", "title": "...", "relevance": 0.9 }
  ],
  "credits_used": 3,
  "credits_remaining": 97
}

Thorough / Exhaustive (async)

Returns a 202 with a job ID:
{
  "job_id": "job-uuid",
  "status": "processing",
  "type": "deep_research",
  "estimated_seconds": 45,
  "estimated_credits": 5,
  "hint": "Poll GET /v1/jobs/job-uuid for results. Credits charged on completion only."
}
DepthCreditsTime
quick3Instant
thorough5~45s
exhaustive8~90s