get_drug_detail_by_id
Retrieve comprehensive drug details including ingredients, usage instructions, precautions, and storage information using a specific drug code from the Korea Pharmaceutical Information Center database.
Instructions
약학정보원의 의약품 코드로 의약품의 상세정보를 가져옵니다. search_drugs_by_name()로 조회한 정보가 부족할 때 사용할 수 있습니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
drugcode | Yes | search_drugs_by_name()의 결과 값에 기재된 의약품의 drug_code 값 |
Input Schema (JSON Schema)
{
"properties": {
"drugcode": {
"description": "search_drugs_by_name()의 결과 값에 기재된 의약품의 drug_code 값",
"type": "string"
}
},
"required": [
"drugcode"
],
"type": "object"
}