Discover/icd.kcb.vn API
live

icd.kcb.vn APIicd.kcb.vn

Access Vietnamese ICD-10 disease codes, names, and classification hierarchy from icd.kcb.vn. Look up individual codes or browse all 22 chapters.

Endpoints
2
Updated
3mo ago
Try it
ICD-10 code to look up (e.g. 'K35.8', 'A00.0', 'J18.9'). Supports both 3-character categor
api.parse.bot/scraper/f43e4b76-2a78-47fd-b08d-13fc8f3dbba3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f43e4b76-2a78-47fd-b08d-13fc8f3dbba3/query_code?code=A00.0' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Get detailed information for a specific ICD-10 code, including disease name, description, and classification hierarchy (chapter, section, parent group). Returns Vietnamese-language disease data.

Input
ParamTypeDescription
coderequiredstringICD-10 code to look up (e.g. 'K35.8', 'A00.0', 'J18.9'). Supports both 3-character categories and 4-character subcategories with or without dots.
Response
{
  "type": "object",
  "fields": {
    "chapter": "object with code and title of the ICD-10 chapter",
    "section": "object with code and title of the ICD-10 section",
    "icd10_code": "string, the ICD-10 code",
    "parent_group": "object with code and title of the parent group (type)",
    "description_vi": "string, Vietnamese description of the disease",
    "additional_info": "string, additional information if available",
    "disease_name_vi": "string, Vietnamese disease name",
    "full_html_content": "string, full HTML content from the source"
  },
  "sample": {
    "data": {
      "chapter": {
        "code": "I",
        "title": "BỆNH NHIỄM TRÙNG VÀ KÝ SINH TRÙNG"
      },
      "section": {
        "code": "A00-A09",
        "title": "Bệnh nhiễm trùng đường ruột"
      },
      "icd10_code": "A00.0",
      "parent_group": {
        "code": "A00",
        "title": "Bệnh tả"
      },
      "description_vi": "Bệnh tả cổ điển",
      "additional_info": "",
      "disease_name_vi": "Bệnh tả do Vibrio cholerae 01, type sinh học cholerae",
      "full_html_content": "<div class=\"block-disease\">...</div>"
    },
    "status": "success"
  }
}

About the icd.kcb.vn API

This API exposes 2 endpoints for retrieving Vietnamese-language ICD-10 disease classification data from icd.kcb.vn. The query_code endpoint returns up to 8 structured fields per code — including chapter, section, parent group, and Vietnamese disease name — while query_all_code lets you traverse the full 22-chapter classification tree, optionally down to 4-character subcategory codes.

Endpoints and Response Shape

The query_code endpoint accepts a single ICD-10 code string (e.g. K35.8, A00.0, J18.9) and returns a structured object containing icd10_code, disease_name_vi, description_vi, and additional_info alongside three hierarchical classification objects: chapter, section, and parent_group, each carrying a code and title. A full_html_content field is also returned for cases where the raw source markup is needed. Both 3-character category codes and 4-character subcategory codes are supported.

Browsing the Classification Tree

The query_all_code endpoint returns an array of objects, each with icd10_code, disease_name_vi, and short_description_vi. By default it covers 3-character category codes across all 22 ICD-10 chapters. Setting include_subcategories to true expands results to include 4-character subcategories, though this significantly increases response time. The optional limit_chapters parameter (integer 1–22) restricts traversal to a subset of chapters, which is useful when only a specific disease domain is needed.

Language and Coverage

All text fields — disease names, descriptions, and classification titles — are returned in Vietnamese, matching the content of icd.kcb.vn, which is maintained for the Vietnamese healthcare system. The classification follows the standard WHO ICD-10 structure adapted for Vietnamese medical coding. There are no English-language fields in the current response schema.

Common use cases
  • Auto-populating Vietnamese ICD-10 code fields in electronic health record (EHR) forms using query_code lookups.
  • Building a local searchable index of all Vietnamese ICD-10 categories by iterating query_all_code across all 22 chapters.
  • Validating submitted diagnosis codes in healthcare billing software by checking icd10_code and disease_name_vi against user input.
  • Generating Vietnamese-language disease classification reports by pulling chapter, section, and parent_group hierarchy from query_code.
  • Seeding a Vietnamese medical terminology database with 3-character and 4-character codes using include_subcategories: true.
  • Restricting sync jobs to a specific disease domain (e.g. infectious diseases) by using the limit_chapters parameter in query_all_code.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does icd.kcb.vn have an official developer API?+
icd.kcb.vn does not publish a documented public developer API. This Parse API provides structured programmatic access to the ICD-10 data available on that site.
What does `query_code` return beyond just the disease name?+
It returns a full classification hierarchy: a chapter object, a section object, and a parent_group object — each with a code and title — plus description_vi, additional_info, and a full_html_content field containing the raw markup from the detail page.
How slow is `query_all_code` when `include_subcategories` is true?+
The endpoint notes this significantly increases response time because it fetches 4-character subcategory codes under every 3-character category. To reduce wait time, use the limit_chapters parameter to scope traversal to only the chapters you need rather than all 22.
Does the API return ICD-10 data in English or other languages?+
All text fields (disease_name_vi, description_vi, short_description_vi, and classification titles) are in Vietnamese only. English translations are not currently included in the response schema. You can fork this API on Parse and revise it to add a translation layer or map codes to an English ICD-10 source.
Does the API cover ICD-11 codes or procedure codes (ICD-10-PCS)?+
No. The current endpoints cover ICD-10 diagnostic classification codes as maintained on icd.kcb.vn. ICD-11 codes and procedure codes are not part of the response schema. You can fork this API on Parse and revise it to add endpoints targeting those code sets if the source exposes them.
Page content last updated . Spec covers 2 endpoints from icd.kcb.vn.
Related APIs in HealthcareSee all →
goodtherapy.org API
Search and find therapists on GoodTherapy.org by location, name, or specialty, then view detailed profiles including credentials and practice information. Browse available therapists across different locations and filter results by specialty, insurance, language, and more to find the right mental health professional.
radiopaedia.org API
Search medical cases and images on Radiopaedia to find relevant radiology references, and stay updated with the latest articles in medical imaging. Access case details, diagnostic images, and recent content updates all in one place.
tbca.net.br API
Search Brazil's most comprehensive food database to get detailed nutritional profiles, household portion measurements, and statistical composition data for thousands of foods including regional and biodiversity-focused options. Find specific nutrients by component, browse foods by group or type, and access institutional food information all in one place.
accessdata.fda.gov API
Search and retrieve comprehensive FDA premarket approval information for medical devices, including approval status, supplements, applicant details, and advisory committee data. Get instant access to specific PMA records with all relevant approval information in one place.
cabi.org API
Search and retrieve detailed information about plant diseases from the CABI Digital Library, including disease characteristics, symptoms, and management strategies. Find specific disease data by name or browse the comprehensive Compendium to identify and understand plant health issues.
azbar.org API
Search for Arizona lawyers by name, location, specialty, or company to find the right legal professional for your needs. View detailed lawyer profiles including their specializations, licensed jurisdictions, law school, admission history, and any disciplinary records.
arztsuche.116117.de API
Find therapists and doctors across Germany by postal code, radius, or medical specialty, getting detailed results with names, addresses, distances, and contact information. Quickly locate healthcare providers that match your needs using Germany's official 116117 doctor search portal.
zocdoc.com API
Search for doctors and medical practices on Zocdoc by specialty and location. Retrieve provider profiles, accepted insurance, office locations, patient reviews, and appointment availability.