InsightIndex
Developer Interface v1.0

API Documentation

Integrated medical search and clinical research synthesis for software and healthcare platforms.

Authentication

Currently, the public API is available for academic and research purposes via direct integration. Contact support for production API keys and rate-limit adjustments.

Search Endpoint

POST/api/clinician

Parameters

  • input: string
    The clinical query or research topic.
  • taskType: string
    One of: GUIDELINE, LITERATURE, SUMMARISE, DRAFT, DRUG, DIFFERENTIAL.

Response Schema

{
  "content": string, // Markdown
  "task": string,
  "sources": [
    {
      "title": string,
      "url": string
    }
  ]
}

Request Example

curl -X POST https://insightindex.study/api/clinician \
  -H "Content-Type: application/json" \
  -d '{
    "input": "First-line hypertension treatment guidelines",
    "taskType": "GUIDELINE"
  }'

API users must adhere to the Clinical Use Policy. Automated diagnosis or patient-facing diagnostic wrappers are strictly prohibited.

Back to Search