All endpoints use `POST` method with `x-www-form-urlencoded` content type.
--
## 🧾 Endpoints
### 1. `action=search`
**Search by drug name.**
**Parameters:**
- `action=search` *(required)*
- `q=panadol` *(required)*
- `page=1` *(optional)* – for pagination
---
### 2. `action=searchByApplicationNumber`
**Search for drug records using the Application Number.**
**Parameters:**
- `action=searchByApplicationNumber` *(required)*
- `q=M013` *(required)*
> The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
---
### 3. `action=searchByProductNDC`
**Search using the Product NDC (National Drug Code).**
**Parameters:**
- `action=searchByProductNDC` *(required)*
- `q=0135-0537` *(required)*
---
### 4. `action=searchByPackageNDC`
**Search using the Package NDC.**
**Parameters:**
- `action=searchByPackageNDC` *(required)*
- `q=0135-0537-02` *(required)*
---
### 5. `action=searchByUPC`
**Search using the UPC code (Universal Product Code).**
**Parameters:**
- `action=searchByUPC` *(required)*
- `q=0053076199642` *(required)*
---
### 6. `action=searchByNUI`
**Search using the NUI (NDF-RT Unique Identifier).**
**Parameters:**
- `action=searchByNUI` *(required)*
- `q=N0000185001` *(required)*
---
### 7. `action=searchByUNII`
**Search using the UNII (Unique Ingredient Identifier).**
**Parameters:**
- `action=searchByUNII` *(required)*
- `q=362O9ITL9D` *(required)*
---
### 8. `action=searchByRXCUI`
**Search using the RXCUI (RxNorm Concept Unique Identifier).**
**Parameters:**
- `action=searchByRXCUI` *(required)*
- `q=1046593` *(required)*
---
### 9. `action=getDetails`
**Retrieve full details about a drug using its `uuid`.**
**Parameters:**
- `action=getDetails` *(required)*
- `q=10c0504e-269e-b058-e063-6394a90a5b84` *(required)*
---
## 📘 Notes
- All endpoints require the `action` parameter.
- The `page` parameter is only used in the `search` endpoint and is optional.
- Always extract the `uuid` from search results and use it with the `getDetails` endpoint to get full drug information.
**Search by drug name.**
**Parameters:**
- `action=search` *(required)*
- `q=panadol` *(required)*
- `page=1` *(optional)* – for pagination
example :
{
"action": "search",
"q": "panadol",
"page": 1
}
The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
Search - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{
"action": "search",
"page": 1,
"count": 9,
"results": [
{
"uuid": "10c12d49-cd3c-e104-e063-6294a90a4e5a",
"brand_name": [
"PANADOL Extra Strength"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN"
]
},
{
"uuid": "10c10ae1-2b66-f708-e063-6394a90a0fca",
"brand_name": [
"PANADOL Extra Strength"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN"
]
},
{
"uuid": "10c0dc3d-12b7-e9da-e063-6394a90a5dcf",
"brand_name": [
"PANADOL Extra"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN AND CAFFEINE"
]
},
{
"uuid": "10c08cd4-8a3b-c9ad-e063-6394a90a9641",
"brand_name": [
"Panadol Cold and Flu NonDrowsy"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN AND PHENYLEPRINE HCL"
]
},
{
"uuid": "1cbe5e2d-4776-3d99-e063-6294a90a10a9",
"brand_name": [
"Panadol Cold and Flu NonDrowsy"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN AND PHENYLEPRINE HCL"
]
},
{
"uuid": "10c16df6-aa2f-03c3-e063-6294a90a93e5",
"brand_name": [
"PANADOL PM"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN AND DIPHENHYDRAMINE HCL"
]
},
{
"uuid": "10c14ee5-017b-0434-e063-6394a90af0f4",
"brand_name": [
"PANADOL"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN"
]
},
{
"uuid": "10c195cf-3021-2052-e063-6294a90a1ea0",
"brand_name": [
"PANADOL PM"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN AND DIPHENHYDRAMINE HCL"
]
},
{
"uuid": "10c0504e-269e-b058-e063-6394a90a5b84",
"brand_name": [
"PANADOL"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN"
]
}
]
}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10236/search' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "search",
"q": "panadol",
"page": 1
}'
**Search for drug records using the Application Number.**
**Parameters:**
- `action=searchByApplicationNumber` *(required)*
- `q=M013` (required)
Example
{
"action": "searchByApplicationNumber",
"q": "M013"
}
The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
Search By Application Number - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{
"action": "searchByApplicationNumber",
"page": 1,
"count": 10,
"results": [
{
"uuid": "9bd24daa-3c59-4608-b967-d4fe2640358b",
"brand_name": [
"basic care acetaminophen"
],
"manufacturer_name": [
"Amazon.com Services LLC"
],
"generic_name": [
"ACETAMINOPHEN"
],
"application_number": [
"M013"
]
},
{
"uuid": "84bccc79-9349-4a65-9dd1-8d0877442e60",
"brand_name": [
"Low Dose Aspirin Enteric Safety-Coated"
],
"manufacturer_name": [
"P & L Development, LLC"
],
"generic_name": [
"ASPIRIN"
],
"application_number": [
"M013"
]
},
{
"uuid": "008ee85b-5cac-45a6-a857-a828f8125175",
"brand_name": [
"Low Dose Aspirin"
],
"manufacturer_name": [
"P & L Development, LLC"
],
"generic_name": [
"ASPIRIN"
],
"application_number": [
"M013"
]
},
{
"uuid": "2a2c065a-6c0f-4a57-83f1-f7ab5aa8f860",
"brand_name": [
"Topcare Childrens Pain and Fever"
],
"manufacturer_name": [
"Topco Associates LLC"
],
"generic_name": [
"ACETAMINOPHEN"
],
"application_number": [
"M013"
]
},
{
"uuid": "275acf44-d85b-fdc6-e063-6394a90adb1f",
"brand_name": [
"Rapidol Aspirin"
],
"manufacturer_name": [
"Pharmadel LLC"
],
"generic_name": [
"ASPIRIN"
],
"application_number": [
"M013"
]
},
{
"uuid": "fe17a43a-4273-4fe9-afbc-2f1efb15eac2",
"brand_name": [
"Acetaminophen Extra Strength PM"
],
"manufacturer_name": [
"SAVE-A-LOT FOOD STORES, LTD."
],
"generic_name": [
"ACETAMINOPHEN, DIPHENHYDRAMINE HCL"
],
"application_number": [
"M013"
]
},
{
"uuid": "0bb01cb6-e97d-773c-e063-6294a90af15f",
"brand_name": [
"Tension Headache Pain Relieving Aid"
],
"manufacturer_name": [
"WAL-MART STORES INC"
],
"generic_name": [
"ACETAMINOPHEN,CAFFEINE"
],
"application_number": [
"M013"
]
},
{
"uuid": "2da0f156-6cdd-331b-e063-6394a90abd18",
"brand_name": [
"Extra strength Acetaminophen PM"
],
"manufacturer_name": [
"TIME CAP LABS INC"
],
"generic_name": [
"ACETAMINOPHEN 500MG/ DIPHENHYDRAMINE HCL 25MG"
],
"application_number": [
"M013"
]
},
{
"uuid": "292ee065-4c3f-98c6-e063-6394a90a881e",
"brand_name": [
"Leader Extra Strength Acetaminophen"
],
"manufacturer_name": [
"Cardinal Health"
],
"generic_name": [
"ACETAMINOPHEN"
],
"application_number": [
"M013"
]
},
{
"uuid": "ade8aeaf-7627-4db5-bb23-d39a3fa5708e",
"brand_name": [
"acetaminophen"
],
"manufacturer_name": [
"Major Pharmaceuticals"
],
"generic_name": [
"ACETAMINOPHEN"
],
"application_number": [
"M013"
]
}
]
}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10237/search+by+application+number' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "searchByApplicationNumber",
"q": "M013"
}'
**Search using the Product NDC (National Drug Code).**
**Parameters:**
- `action=searchByProductNDC` *(required)*
- `q=0135-0537` *(required)*
example :
{
"action": "searchByProductNDC",
"q": "0135-0537"
}
The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
Search By Product NDC - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{"action":"searchByProductNDC","page":1,"count":1,"results":[{"uuid":"10c0504e-269e-b058-e063-6394a90a5b84","brand_name":["PANADOL"],"manufacturer_name":["Haleon US Holdings LLC"],"generic_name":["ACETAMINOPHEN"],"product_ndc":["0135-0537"]}]}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10238/search+by+product+ndc' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "searchByProductNDC",
"q": "0135-0537"
}'
**Search by Package NDC .**
**Parameters:**
- `action=searchByPackageNDC` *(required)*
- `q=0135-0537-02` *(required)*
- `page=1` *(optional)* – for pagination
example :
{
"action": "searchByPackageNDC",
"q": "0135-0537-02"
}
The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
Search By Package NDC - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{
"action": "searchByPackageNDC",
"page": 1,
"count": 1,
"results": [
{
"uuid": "10c0504e-269e-b058-e063-6394a90a5b84",
"brand_name": [
"PANADOL"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"generic_name": [
"ACETAMINOPHEN"
],
"package_ndc": [
"0135-0537-01",
"0135-0537-02",
"0135-0537-03"
]
}
]
}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10239/search+by+package+ndc' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "searchByPackageNDC",
"q": "0135-0537-02"
}'
**Search by UPC.**
**Parameters:**
- `action=searchByUPC` *(required)*
- `q=0053076199642` *(required)*
- `page=1` *(optional)* – for pagination
example :
{
"action": "searchByUPC",
"q": "0053076199642"
}
The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
Search By UPC - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{
"action": "searchByUPC",
"page": 1,
"count": 1,
"results": [
{
"uuid": "9c097ebe-6711-410b-b543-c411df272631",
"brand_name": [
"Kaopectate Peppermint Flavor Anti Diarrheal"
],
"manufacturer_name": [
"Kramer Laboratories"
],
"generic_name": [
"BISMUTH SUBSALICYLATE"
],
"upc": [
"0053076199642"
]
}
]
}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10240/search+by+upc' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "searchByUPC",
"q": "0053076199642"
}'
**Search by NUI.**
**Parameters:**
- `action=searchByNUI` *(required)*
- `q=N0000185001` *(required)*
- `page=1` *(optional)* – for pagination
example :
{
"action": "searchByNUI",
"q": "N0000185001",
"page": 1
}
The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
Search By NUI - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{
"action": "searchByNUI",
"page": 1,
"count": 10,
"results": [
{
"uuid": "12da355e-ceac-7ce3-e063-6394a90a86f1",
"brand_name": [
"Cuprum aceticum Nicotiana"
],
"manufacturer_name": [
"Uriel Pharmacy Inc."
],
"generic_name": [
"CUPRUM ACETICUM NICOTIANA"
],
"nui": [
"N0000185375",
"N0000175629",
"N0000184306",
"N0000185001",
"M0000728",
"M0016962"
]
},
{
"uuid": "0d383700-e259-881f-e063-6294a90a347c",
"brand_name": [
"Foster and Thrive Redness Relief Eye Drops"
],
"manufacturer_name": [
"Strategic Sourcing Services LLC"
],
"generic_name": [
"GLYCERIN, NAPHAZOLINE HCL"
],
"nui": [
"N0000185370",
"N0000175629",
"N0000184306",
"N0000185001",
"M0000728",
"M0009417"
]
},
{
"uuid": "29a5d178-edca-5e44-e063-6394a90aa6a9",
"brand_name": [
"Revivol Hemorrhoid and Fissure"
],
"manufacturer_name": [
"Derma Care Research Labs, LLC"
],
"generic_name": [
"GLYCERIN 14.4%, LIDOCAINE 5%, PETROLATUM 15%, PHENYLEPHRINE HCL 0.25%"
],
"nui": [
"N0000185370",
"N0000175629",
"N0000184306",
"N0000185001",
"M0000728",
"M0009417",
"N0000175682",
"M0000897",
"N0000175426",
"N0000175976"
]
},
{
"uuid": "017f025d-6fca-ec96-e063-6394a90a4e44",
"brand_name": [
"Allergies"
],
"manufacturer_name": [
"Newton Laboratories, Inc."
],
"generic_name": [
"APIS MELLIFICA, ECHINACEA, HYDRASTIS CANADENSIS, TARAXACUM OFFICINALE, ACONITUM NAPELLUS, AETHUSA CYNAPIUM, AGARICUS MUSCARIUS, ALETRIS FARINOSA, ALFALFA, ALLIUM CEPA, ALLIUM SATIVUM, AMBROSIA ARTEMISIAEFOLIA, ARSENICUM ALBUM, ARTEMISIA VULGARIS, ARUNDO MAURITANICA, AVENA SATIVA, BELLADONNA, BELLIS PERRENIS, BOVISTA, BROMIUM, BRYONIA, CAFFEINUM, CALCAREA CARBONICA, CALLUNA VULGARIS, FLOS, CAPSICUM ANNUUM, CAT HAIR, CHAMOMILLA, CHELIDONIUM MAJUS, CHENOPODIUM ANTHELMINTICUM, CINNAMOMUM"
],
"nui": [
"N0000185021",
"N0000175629",
"N0000184306",
"N0000185001",
"M0000728",
"M0002274",
"N0000193618",
"M0001797",
"N0000175739",
"N0000175729",
"N0000175790",
"M0023046",
"N0000185363",
"M0370530",
"N0000185375",
"N0000185371",
"M0006342",
"M0016962",
"M0022575",
"M0008672",
"M0013890",
"N0000185003",
"M0576325",
"M0515971",
"N0000185374",
"M0006896",
"M0516536",
"N0000185372",
"M0008890"
]
},
{
"uuid": "018e17ed-a686-9861-e063-6294a90acc7a",
"brand_name": [
"Allergies"
],
"manufacturer_name": [
"Newton Laboratories, Inc."
],
"generic_name": [
"APIS MELLIFICA, ECHINACEA, HYDRASTIS CANADENSIS, TARAXACUM OFFICINALE, ACONITUM NAPELLUS, AETHUSA CYNAPIUM, AGARICUS MUSCARIUS, ALETRIS FARINOSA, ALFALFA, ALLIUM CEPA, ALLIUM SATIVUM, AMBROSIA ARTEMISIAEFOLIA, ARSENICUM ALBUM, ARTEMISIA VULGARIS, ARUNDO MAURITANICA, AVENA SATIVA, BELLADONNA, BELLIS PERRENIS, BOVISTA, BROMIUM, BRYONIA, CAFFEINUM, CALCAREA CARBONICA, CALLUNA VULGARIS, FLOS, CAPSICUM ANNUUM, CAT HAIR, CHAMOMILLA, CHELIDONIUM MAJUS, CHENOPODIUM ANTHELMINTICUM, CINNAMOMUM"
],
"nui": [
"N0000185021",
"N0000175629",
"N0000184306",
"N0000185001",
"M0000728",
"M0002274",
"N0000193618",
"M0001797",
"N0000175739",
"N0000175729",
"N0000175790",
"M0023046",
"N0000185363",
"M0370530",
"N0000185375",
"N0000185371",
"M0006342",
"M0016962",
"M0022575",
"M0008672",
"M0013890",
"N0000185003",
"M0576325",
"M0515971",
"N0000185374",
"M0006896",
"M0516536",
"N0000185372",
"M0008890"
]
},
{
"uuid": "44b218c1-de39-4783-9aae-35680ad388e5",
"brand_name": [
"ANIMAL ANTIGEN"
],
"manufacturer_name": [
"Natural Creations, Inc."
],
"generic_name": [
"FELISCATUSHAIR,BOSTAURUSHAIR,BOSTAURUSSKIN,GALLUSGALLUSFEATHER,CANISLUPUSFAMILIARISSKIN,CANISFAMILIARISHAIR,ANASPLATYRHYNCHOSFEATHER,ANSERANSERFEATHER,CAVIAPORCELLUSHAIR,CAVIAPORCELLUSSKIN,MESOCRICETUSAURATUSHAIR,MESOCRICETUSAURATUSSKIN,SUSSCROFAHAIR,SUSSCROFASKIN,EQUUSCABALLUSHAIR,EQUUSCABALLUSDANDER,MUSMUSCULUSHAIR,MUSMUSCULUASSKIN,ORYCTOLAGUSCUNICULUSSKIN,ORYCTOLAGUSCUNICULUSHAIR,OVISARIESWHOLE,MELEAGRISGALLOPAVOFEATHER,ARSENICTRIOXIDE,BLATTAORIENTALIS,STRYCHNOSNUX-VOMICASEED,PHOSPHORUS,PULSATILLA,SULFUR"
],
"nui": [
"N0000185373",
"N0000175629",
"N0000184306",
"M0008280",
"M0000728",
"N0000185001",
"N0000185365",
"M0028968",
"N0000185363",
"M0370530",
"N0000185364",
"N0000185377",
"N0000185368",
"M0576325",
"N0000185003",
"M0515971",
"N0000185375",
"M0016962",
"M0516536"
]
},
{
"uuid": "848ca4be-1f89-b274-e053-2a91aa0ad774",
"brand_name": [
"Acid Reflux Relief"
],
"manufacturer_name": [
"Homeocare Laboratories"
],
"generic_name": [
"CAPSICUM, SODIUM PHOSPHATE, DIBASIC, HEPTAHYDRATE, STRYCHNOS NUX-VOMICA SEED, ROBINIA PSEUDOACACIA BARK, SULFUR, SEPIA OFFICINALIS JUICE"
],
"nui": [
"N0000185375",
"N0000185371",
"N0000175629",
"N0000184306",
"M0000728",
"M0006342",
"M0016962",
"M0022575",
"N0000185001",
"M0516536"
]
},
{
"uuid": "2ce1f7af-cb44-efab-e063-6294a90a2f5f",
"brand_name": [
"Allergena Zone 1 Kids Grasses, Trees and Weeds"
],
"manufacturer_name": [
"Meditrend, Inc. DBA Progena Professional Formulations"
],
"generic_name": [
"ECHINACEA, BAPTISIA TINCTORIA, HYDRASTIS CANADENSIS, MYRRHA, PHYTOLACCA DECANDRA, TRIGONELLA FOENUM-GRAECUM, ZONE 1 TREE, ZONE 1 WEED, ZONE 1 GRASS"
],
"nui": [
"N0000185367",
"N0000175629",
"N0000184306",
"N0000185001",
"M0017130",
"M0000728",
"N0000185006"
]
},
{
"uuid": "2ccb849d-1800-8003-e063-6394a90ae4fb",
"brand_name": [
"Allergena Texas Cedar Fever"
],
"manufacturer_name": [
"Meditrend, Inc. DBA Progena Professional Formulations"
],
"generic_name": [
"ECHINACEA,BAPTISIA TINCTORIA, HYDRASTIS CANADENSIS, MYRRHA, PHYTOLACCA DECANDRA, TRIGONELLA FOENUM-GRAECUM, TEXAS TREE, TEXAS WEED, TEXAS GRASS"
],
"nui": [
"N0000185367",
"N0000175629",
"N0000184306",
"N0000185001",
"M0017130",
"M0000728",
"N0000185006"
]
},
{
"uuid": "22f53268-895e-c34e-e063-6394a90a668d",
"brand_name": [
"Advanced Eye Relief Dry Eye Rejuvenation"
],
"manufacturer_name": [
"Bausch & Lomb Incorporated"
],
"generic_name": [
"GLYCERIN PROPYLENE GLYCOL"
],
"nui": [
"N0000185370",
"N0000175629",
"N0000184306",
"N0000185001",
"M0000728",
"M0009417"
]
}
]
}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10241/search+by+nui' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "searchByNUI",
"q": "N0000185001",
"page": 1
}'
**Search by UNII.**
**Parameters:**
- `action=searchByUNII` *(required)*
- `q=362O9ITL9D` *(required)*
- `page=1` *(optional)* – for pagination
example :
{
"action": "searchByUNII",
"q": "362O9ITL9D",
"page": 1
}
The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
Search By UNII - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{
"action": "searchByUNII",
"page": 1,
"count": 10,
"results": [
{
"uuid": "9bd24daa-3c59-4608-b967-d4fe2640358b",
"brand_name": [
"basic care acetaminophen"
],
"manufacturer_name": [
"Amazon.com Services LLC"
],
"generic_name": [
"ACETAMINOPHEN"
],
"unii": [
"362O9ITL9D"
]
},
{
"uuid": "a3731272-35ef-4fb8-aeb2-3421f68f715a",
"brand_name": [
"Acetaminophen"
],
"manufacturer_name": [
"WALMART INC."
],
"generic_name": [
"ACETAMINOPHEN"
],
"unii": [
"362O9ITL9D"
]
},
{
"uuid": "264510a0-fe51-a5b7-e063-6394a90ab1cb",
"brand_name": [
"Hydrocodone Bitartrate and Acetaminophen"
],
"manufacturer_name": [
"Northwind Pharmaceuticals, LLC"
],
"generic_name": [
"HYDROCODONE BITARTRATE AND ACETAMINOPHEN"
],
"unii": [
"362O9ITL9D",
"NO70W886KK"
]
},
{
"uuid": "a29db87b-3f50-40ca-a5ab-406028ff19f0",
"brand_name": [
"Butalbital, Acetaminophen, Caffeine, and Codeine Phosphate"
],
"manufacturer_name": [
"Bryant Ranch Prepack"
],
"generic_name": [
"BUTALBITAL, ACETAMINOPHEN, CAFFEINE, AND CODEINE PHOSPHATE"
],
"unii": [
"362O9ITL9D",
"KHS0AZ4JVK",
"3G6A5W338E",
"GSL05Y1MN6"
]
},
{
"uuid": "3aa48604-afd3-49a2-b0a8-ab15171c7913",
"brand_name": [
"Daytime Cold and Flu"
],
"manufacturer_name": [
"Family Dollar (FAMILY WELLNESS)"
],
"generic_name": [
"ACETAMINOPHEN, DEXTROMETHORPHAN HBR, PHENYLEPHRINE HCL"
],
"unii": [
"362O9ITL9D",
"9D2RTI9KYH",
"04JA59TNSJ"
]
},
{
"uuid": "2a2c065a-6c0f-4a57-83f1-f7ab5aa8f860",
"brand_name": [
"Topcare Childrens Pain and Fever"
],
"manufacturer_name": [
"Topco Associates LLC"
],
"generic_name": [
"ACETAMINOPHEN"
],
"unii": [
"362O9ITL9D"
]
},
{
"uuid": "2a33aebb-6244-c7c9-e063-6294a90a625c",
"brand_name": [
"ACETAMINOPHEN AND CODEINE PHOSPHATE"
],
"manufacturer_name": [
"Northwind Pharmaceuticals, LLC"
],
"generic_name": [
"ACETAMINOPHEN AND CODEINE PHOSPHATE"
],
"unii": [
"362O9ITL9D",
"GSL05Y1MN6"
]
},
{
"uuid": "240ec2a9-a153-8fd8-e063-6394a90a9250",
"brand_name": [
"ACETAMINOPHEN AND CODEINE PHOSPHATE"
],
"manufacturer_name": [
"REMEDYREPACK INC."
],
"generic_name": [
"ACETAMINOPHEN AND CODEINE PHOSPHATE"
],
"unii": [
"362O9ITL9D",
"GSL05Y1MN6"
]
},
{
"uuid": "fe17a43a-4273-4fe9-afbc-2f1efb15eac2",
"brand_name": [
"Acetaminophen Extra Strength PM"
],
"manufacturer_name": [
"SAVE-A-LOT FOOD STORES, LTD."
],
"generic_name": [
"ACETAMINOPHEN, DIPHENHYDRAMINE HCL"
],
"unii": [
"362O9ITL9D",
"TC2D6JAD40"
]
},
{
"uuid": "faddbd0b-3318-2121-e053-6294a90a27c2",
"brand_name": [
"ACETAMINOPHEN"
],
"manufacturer_name": [
"Granules India Limited"
],
"generic_name": [
"ACETAMINOPHEN"
],
"unii": [
"362O9ITL9D"
]
}
]
}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10242/search+by+unii' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "searchByUNII",
"q": "362O9ITL9D",
"page": 1
}'
**Search by RXCUI.**
**Parameters:**
- `action=searchByRXCUI` *(required)*
- `q=1046593` *(required)*
- `page=1` *(optional)* – for pagination
example :
{
"action": "searchByRXCUI",
"q": "1046593",
"page": 1
}
The most important key in the response is `uuid`, which you will use with `getDetails` to fetch full drug details.
Search By RXCUI - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{
"action": "searchByRXCUI",
"page": 1,
"count": 10,
"results": [
{
"uuid": "249cd8bc-b0ae-7392-e063-6394a90abbd3",
"brand_name": [
"Moisturizing Antibacterial"
],
"manufacturer_name": [
"Wal-Mart Stores, Inc.,"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "2b2182c1-f5a7-a269-e063-6394a90afe0f",
"brand_name": [
"Antibacterial 2X"
],
"manufacturer_name": [
"Sante Manufacturing Inc"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "1222f97f-e281-bb53-e063-6394a90aef1e",
"brand_name": [
"Kroger Antibacterial"
],
"manufacturer_name": [
"Kroger Company"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "2d7f0948-9a5a-55dc-e063-6294a90acbfc",
"brand_name": [
"Kroger Springwater Antibacterial"
],
"manufacturer_name": [
"Kroger Company"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "2d9469ba-02b1-0cfc-e063-6394a90a6292",
"brand_name": [
"Kroger antibacterial LHS"
],
"manufacturer_name": [
"Kroger Company"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "1222f97f-e282-bb53-e063-6394a90aef1e",
"brand_name": [
"Kroger Antibacterial"
],
"manufacturer_name": [
"Kroger Company"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "284c3a38-ba46-f1c5-e063-6394a90a7855",
"brand_name": [
"Jabonito Kids Green Apple Liquid"
],
"manufacturer_name": [
"Industria La Popular, S.A."
],
"generic_name": [
"BENZALKONIUM CHLORIDE 0.13%"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "e3e29db5-6d48-4019-bef3-34fd17e844de",
"brand_name": [
"MAGICSHINE ANTIBACTERIAL FOAMING HAND"
],
"manufacturer_name": [
"Maintex"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "c9108268-0ef6-45c5-b82c-925d16749df0",
"brand_name": [
"Citrus Fresh Foaming Antimicrobial"
],
"manufacturer_name": [
"Hillyard GMP"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
},
{
"uuid": "11f15b81-8806-74bb-e063-6394a90a80d7",
"brand_name": [
"Antibacterial LHS"
],
"manufacturer_name": [
"Apollo Health and Beauty Care"
],
"generic_name": [
"BENZALKONIUM CHLORIDE"
],
"rxcui": [
"1046593"
]
}
]
}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10243/search+by+rxcui' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "searchByRXCUI",
"q": "1046593",
"page": 1
}'
**Retrieve full details about a drug using its `uuid`.**
**Parameters:**
- `action=getDetails` *(required)*
- `q=10c0504e-269e-b058-e063-6394a90a5b84` (required)
Example
{
"action": "getDetails",
"q": "10c0504e-269e-b058-e063-6394a90a5b84"
}
Get Medicine Details - Endpoint Features
| Object | Description |
|---|---|
Request Body |
[Required] Json |
{
"action": "getDetails",
"data": {
"uuid": "10c0504e-269e-b058-e063-6394a90a5b84",
"brand_name": [
"PANADOL"
],
"generic_name": [
"ACETAMINOPHEN"
],
"manufacturer_name": [
"Haleon US Holdings LLC"
],
"product_type": [
"HUMAN OTC DRUG"
],
"route": [
"ORAL"
],
"inactive_ingredient": "[\"Inactive ingredients benzoic acid, FD&C red no. 40, flavor, glycerin, hydrochloric acid*, polyethylene glycol, potassium sorbate, propylene glycol, purified water, sodium hydroxide*, sodium saccharin, sorbitol solution * contains one or more of these ingredients\"]",
"purpose": [
"Purposes Pain reliever/fever reducer"
],
"keep_out_of_reach_of_children": [
"Keep out of reach of children."
],
"warning": "",
"when_using": "",
"spl_product_data_elements": [
"PANADOL acetaminophen BENZOIC ACID FD&C RED NO. 40 GLYCERIN HYDROCHLORIC ACID POLYETHYLENE GLYCOL, UNSPECIFIED POTASSIUM SORBATE PROPYLENE GLYCOL WATER SODIUM HYDROXIDE SACCHARIN SODIUM SORBITOL ACETAMINOPHEN ACETAMINOPHEN light red"
],
"ask_doctor": [
"Ask a doctor before use if your child has liver disease"
],
"dosage_and_administration": [
"Directions: This product does not contain directions or complete warnings for adult use do not take more than directed (see overdose warning) find right dose in chart. If possible use weight to dose; otherwise, use age if needed, repeat dose every 4 hours while symptoms persist or as directed by a doctor do not take more than 5 doses in 24 hours, unless directed by a doctor use only with enclosed pre-marked measuring cup for accuracy. Do not use any other dosing device. Age Weight Dosage under 2 yrs under 24 lbs ask a doctor 2 - 3 yrs 24 35 lbs 5 mL* 4 5 yrs 36 47 lbs 7.5 mL 6 8 yrs 48 59 lbs 10 mL 9 10 yrs 60 71 lbs 12.5 mL 11 yrs 72 95 lbs 15 mL"
],
"storage_and_handling": [
"Other information store below 30°C (86°F)"
],
"package_label_principal_display_panel": [
"Principal Display Panel NDC 0135-0537-03 Panadol ® Childrens ACETAMINOPHEN 160 mg per 5 mL LIQUID SPain Reliever Fever Reducer EE NEW WARNINGS INFORMATION Ages 2-11 years Fast relief of fever and pain Gentle on your stomach Ibuprofen free No sugar added Aspirin free artificial raspberry flavor 4 fl oz (118 mL) Tamper Evident Feature: Do not use if printed overwrap is missing or broken. READ AND KEEP CARTON FOR COMPLETE INFORMATION PANADOL, the Beacon design and the Bear design are registered trademarks of the GSK group of companies. GlaxoSmithKline Consumer Healthcare, L.P. Moon Township, PA 15108 Made in Canada ©2015 GSK All Rights Reserved. Keep Carton 102003XB Panadol Childrens liquid 4 fl oz carton"
],
"version": "14",
"application_number": [
"M013"
],
"product_ndc": [
"0135-0537"
],
"substance_name": [
"ACETAMINOPHEN"
],
"rxcui": "",
"package_ndc": [
"0135-0537-01",
"0135-0537-02",
"0135-0537-03"
],
"is_original_packager": [
true
],
"upc": "",
"nui": "",
"pharm_class_epc": "",
"pharm_class_cs": "",
"unii": [
"362O9ITL9D"
],
"pregnancy_or_breast_feeding": "",
"active_ingredient": [
"Active ingredient (in each 5mL) Acetaminophen 160 mg"
],
"stop_use": [
"Stop use and ask a doctor if pain gets worse or lasts more than 5 days fever gets worse or lasts more than 3 days redness or swelling is present any new symptoms appear These could be signs of a serious condition."
],
"do_not_use": [
"Do not use with any other drug containing acetaminophen (prescription or nonprescription). If you are not sure whether a drug contains acetaminophen, ask a doctor or pharmacist. if you are allergic to acetaminophen or any of the inactive ingredients in this product"
],
"indications_and_usage": [
"Uses temporarily relieves minor aches and pains due to: colds flu headache toothache temporarily reduces fever"
]
}
}
curl --location --request POST 'https://zylalabs.com/api/6799/medlive+api/10244/get+medicine+details' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"action": "getDetails",
"q": "10c10ae1-2b66-f708-e063-6394a90a0fca"
}'
| Header | Description |
|---|---|
Authorization
|
[Required] Should be Bearer access_key. See "Your API Access Key" above when you are subscribed. |
No long-term commitment. Upgrade, downgrade, or cancel anytime. Free Trial includes up to 50 requests.
Each endpoint returns comprehensive data about FDA-approved drugs, including fields such as `uuid`, `brand_name`, `manufacturer_name`, `generic_name`, and various identifiers like NDC, UPC, and RXCUI. The data structure varies slightly by endpoint but generally includes a list of results with detailed drug information.
Key fields in the response include `uuid` (unique identifier), `brand_name` (commercial name), `manufacturer_name` (producing company), `generic_name` (active ingredient), and identifiers like `ndc`, `upc`, and `rxcui`. These fields help identify and categorize drugs effectively.
The response data is organized in a JSON format, typically containing an `action` field, a `page` number, a `count` of results, and a `results` array. Each entry in the `results` array includes detailed drug information, making it easy to parse and utilize.
Each endpoint provides specific information based on the search criteria, such as drug names, application numbers, NDCs, and UPCs. For example, the `searchByApplicationNumber` endpoint returns drugs associated with a specific application number, including their `uuid` for further detail retrieval.
Users can customize requests by specifying the `q` parameter with their search term (e.g., drug name, NDC) and the optional `page` parameter for pagination. This allows for tailored searches and efficient data retrieval based on user needs.
Typical use cases include drug information retrieval for healthcare applications, inventory management in pharmacies, and research purposes. Developers can integrate this API to provide users with detailed drug data, enhancing applications in health tech and pharmacy management.
Data accuracy is maintained through regular updates from authoritative sources, including the FDA. The API relies on verified databases to ensure that the information provided is current and reliable, which is crucial for healthcare applications.
Users can expect consistent data patterns across endpoints, such as the presence of `uuid` in search results, which links to detailed drug information. Additionally, pagination is supported in the `search` endpoint, allowing users to navigate through large datasets efficiently.
Please have a look at our Refund Policy: https://zylalabs.com/terms#refund
To obtain your API key, you first need to sign in to your account and subscribe to the API you want to use. Once subscribed, go to your Profile, open the Subscription section, and select the specific API. Your API key will be available there and can be used to authenticate your requests.
You can’t switch APIs during the free trial. If you subscribe to a different API, your trial will end and the new subscription will start as a paid plan.
If you don’t cancel before the 7th day, your free trial will end automatically and your subscription will switch to a paid plan under the same plan you originally subscribed to, meaning you will be charged and gain access to the API calls included in that plan.
The free trial ends when you reach 50 API requests or after 7 days, whichever comes first.
No, the free trial is available only once, so we recommend using it on the API that interests you the most. Most of our APIs offer a free trial, but some may not include this option.
Yes, we offer a 7-day free trial that allows you to make up to 50 API calls at no cost, so you can test our APIs without any commitment.
Zyla API Hub is like a big store for APIs, where you can find thousands of them all in one place. We also offer dedicated support and real-time monitoring of all APIs. Once you sign up, you can pick and choose which APIs you want to use. Just remember, each API needs its own subscription. But if you subscribe to multiple ones, you'll use the same key for all of them, making things easier for you.
Service Level:
100%
Response Time:
878ms
Service Level:
100%
Response Time:
1,326ms
Service Level:
100%
Response Time:
5,247ms
Service Level:
100%
Response Time:
508ms
Service Level:
100%
Response Time:
374ms
Service Level:
100%
Response Time:
627ms
Service Level:
100%
Response Time:
353ms
Service Level:
100%
Response Time:
3,407ms
Service Level:
100%
Response Time:
4,790ms
Service Level:
100%
Response Time:
11,200ms
Service Level:
100%
Response Time:
196ms
Service Level:
100%
Response Time:
3,641ms
Service Level:
100%
Response Time:
149ms
Service Level:
100%
Response Time:
1,610ms
Service Level:
100%
Response Time:
1,381ms
Service Level:
100%
Response Time:
124ms
Service Level:
100%
Response Time:
1,552ms
Service Level:
100%
Response Time:
2,199ms
Service Level:
100%
Response Time:
1,043ms
Service Level:
100%
Response Time:
1,269ms