Medicine Barcode Lookup API
Enter the numeric barcode printed on a medicine package to retrieve third-party records such as the product name, approval number, manufacturer, ingredients, dosage, contraindications, and precautions.
Documentation
Returns third-party medicine records for a package barcode. It does not replace the physical leaflet, clinical advice, or pharmacist guidance and cannot authenticate a medicine.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"code": "6901234567890"
}Response Example
{
"code": "6901234567890",
"name": "示例药品",
"approval": "国药准字示例",
"manuName": "示例生产企业",
"spec": "10mg×12片",
"basis": "示例主要成分"
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | 6901234567890 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | 6901234567890 |
| name | string | 示例药品 |
| approval | string | 国药准字示例 |
| manuName | string | 示例生产企业 |
| spec | string | 10mg×12片 |
| basis | string | 示例主要成分 |