# ICD-10 code lookup scraper

**Use case:** 

Look up ICD-10-CM diagnosis codes for diabetes, hypertension, asthma, and other common clinical terms.

## Input

```json
{
  "terms": [
    "diabetes",
    "hypertension",
    "asthma"
  ],
  "maxResults": 25,
  "searchFields": "code,name",
  "displayFields": "",
  "includeRaw": true
}
```

## Output

```json
{
  "inputTerm": {
    "label": "Input term"
  },
  "code": {
    "label": "ICD-10-CM code"
  },
  "name": {
    "label": "Name"
  },
  "diagnosisDescription": {
    "label": "Description"
  },
  "rank": {
    "label": "Rank"
  },
  "totalMatchesForTerm": {
    "label": "Total matches"
  },
  "source": {
    "label": "Source"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "searchFields": {
    "label": "Search fields"
  },
  "fetchedAt": {
    "label": "Fetched at"
  },
  "rawRow": {
    "label": "Raw NLM row"
  },
  "rawCodeList": {
    "label": "Raw code list"
  }
}
```

## About this Actor

This example demonstrates how to use [NLM ICD-10-CM Clinical Tables Lookup Scraper](https://apify.com/automation-lab/nlm-icd10cm-clinical-tables-lookup-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/nlm-icd10cm-clinical-tables-lookup-scraper) to learn more, explore other use cases, and run it yourself.