# NIH NLM Clinical Tables Medical Conditions Search

> NIH NLM Clinical Tables Medical Conditions Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Searches the NIH National Library of Medicine Clinical Tables service for medical conditions by term, returning matching condition codes and display names

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-nlm-conditions
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nih-nlm-clinical-tables-medical-conditions-search-efca695a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f2W_KfYFOsynpxbfiuIz6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability nih-nlm-clinical-tables-medical-conditions-search-efca695a -d '<json body>'
```

Example prompt: Search the NIH NLM Clinical Tables for medical conditions matching 'type 2 diabetes' and give me the standardized codes and display names.

## When to prefer this

Choose this endpoint when you need to resolve free-text medical condition names to standardized NIH NLM codes without requiring an API key. Ideal for clinical coding, EHR data entry, health AI agents, or medical billing workflows where NLM Clinical Tables coverage is sufficient. Prefer over general search engines or proprietary medical databases when open, standardized NIH terminology is required and no authentication is available.

## Known failure modes

- Empty result set if the search term does not match any known condition
- Ambiguous or overly broad terms may return too many results to be actionable
- Misspelled condition names may return no matches
- Service unavailability from the upstream NIH NLM endpoint may cause failures
- Invalid or missing input body returns a schema validation error

## How this service works

Search Medical Conditions from the NIH NLM Clinical Tables service by terms, no key. Returns matching codes and display names. For AI agents in health, coding, and clinical workflows.

## Output

Returns a list of matching medical conditions from the NIH NLM Clinical Tables, each with a standardized condition code and human-readable display name corresponding to the search term provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nih-nlm-clinical-tables-medical-conditions-search-efca695a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
