Catalog/clinical-conditions-search

Health

Standardized condition/problem name search API

Searches the NLM standardized condition/problem list for patient-friendly condition names. Answers 'Standardize this condition name', 'List variants of asthma as a problem'.

Price$0.01per request
MethodPOST
Route/v1/health/clinical-conditions-search
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache604800s public
healthclinicalconditionsproblem-listterminologynlmmedical
API URLhttps://x402.hexl.dev/v1/health/clinical-conditions-search
Integration docs
Example request
{
  "term": "asthma",
  "max": 3
}
Example response
{
  "query": "asthma",
  "totalMatches": 5,
  "returned": 3,
  "conditions": [
    "Asthma",
    "Asthma - mild persistent",
    "Asthma - moderate persistent"
  ],
  "disclaimer": "Informational reference/terminology data only — NOT medical advice. Verify against authoritative sources and a qualified professional before any clinical, billing, or treatment decision."
}
Input schema
{
  "type": "object",
  "required": [
    "term"
  ],
  "properties": {
    "term": {
      "type": "string"
    },
    "max": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50,
      "default": 10
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}