# ICD-10-CM Diagnosis Code Search

> ICD-10-CM Diagnosis Code Search is a paid API for AI agents from mcpfax-utility.bowling-anthony.workers.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Search ICD-10-CM diagnosis codes by clinical term or code string, returning matching codes and descriptions.

## Facts

- Endpoint: GET https://mcpfax-utility.bowling-anthony.workers.dev/v1/icd10
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/icd-10-cm-diagnosis-code-search-0547d161
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6KcMaDGxAD9G2bryw18wW

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 icd-10-cm-diagnosis-code-search-0547d161
```

Example prompt: What's the ICD-10-CM code for type 2 diabetes with diabetic chronic kidney disease, stage 3?

## When to prefer this

Use this endpoint when you need to translate a clinical term or condition name into an ICD-10-CM code, or decode an existing ICD-10-CM code into a human-readable description, particularly in medical billing, EHR documentation, insurance claim processing, or clinical decision support contexts. Prefer over general search engines when structured, authoritative code-description mappings are required.

## Known failure modes

- No matching codes found for an overly vague or misspelled term
- Ambiguous term returns too many results requiring further refinement
- Code format invalid if non-ICD-10-CM code is submitted
- Service timeout or 402 payment error if payment not properly attached

## How this service works

ICD-10-CM search — Search ICD-10-CM diagnosis codes by term or code.

## Output

A list of matching ICD-10-CM entries, each including the alphanumeric diagnosis code and its full clinical description, ranked or filtered by relevance to the search term or code fragment 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "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/icd-10-cm-diagnosis-code-search-0547d161/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcpfax-utility.bowling-anthony.workers.dev](https://www.zero.xyz/host/mcpfax-utility.bowling-anthony.workers.dev/llms.txt)
