Twinkle HubTwinkle Hub

ICD-10-CM 中文/英文 病名查詢

tw_lookup_icd10

医療・​食品 · 9 件🇹🇼 台湾読み取り専用

ICD-10-CM 中文版查詢 (衛福部健保署翻譯 v2023, data.gov.tw 177507).

96,803 個 ICD-10 code, 涵蓋全部 A00-Z99 + V01-Y98 外因碼 + 手術 ICD-10-PCS. 至少要給 codekeyword 其一.

Args: code: ICD-10 編碼 (prefix match), e.g. "A00", "I10", "E11.9" keyword: 中文 / 英文 病名 substring, e.g. "霍亂", "diabetes", "高血壓", "myocardial infarction" limit: max 結果 (1..200, default 20)

Returns: {n_corpus, n_returned, query, hits: [{code, use_flag, name_en, name_zh, status, revised_at}, ...]}

典型用例: 「I10 是什麼病」 → tw_lookup_icd10(code="I10") 「糖尿病所有 code」 → tw_lookup_icd10(keyword="糖尿病") 「diabetes type 2 ICD」 → tw_lookup_icd10(keyword="diabetes")

パラメータ

名前説明
codestring
keywordstring
limitinteger
生の JSON schema
{
  "properties": {
    "code": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Code"
    },
    "keyword": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Keyword"
    },
    "limit": {
      "default": 20,
      "title": "Limit",
      "type": "integer"
    }
  },
  "title": "tw_lookup_icd10Arguments",
  "type": "object"
}

呼び出し方

スターター——パラメータは​上表参照
tw_lookup_icd10({ code: "…" })