Todos los puntos finales utilizan el método `POST` con el tipo de contenido `x-www-form-urlencoded`.
--
## 🧾 Puntos finales
### 1. `action=search`
**Buscar por nombre de medicamento.**
**Parámetros:**
- `action=search` *(requerido)*
- `q=panadol` *(requerido)*
- `page=1` *(opcional)* – para la paginación
---
### 2. `action=searchByApplicationNumber`
**Buscar registros de medicamentos utilizando el número de solicitud.**
**Parámetros:**
- `action=searchByApplicationNumber` *(requerido)*
- `q=M013` *(requerido)*
> La clave más importante en la respuesta es `uuid`, que utilizarás con `getDetails` para obtener los detalles completos del medicamento.
---
### 3. `action=searchByProductNDC`
**Buscar utilizando el NDC del producto (Código Nacional del Medicamento).**
**Parámetros:**
- `action=searchByProductNDC` *(requerido)*
- `q=0135-0537` *(requerido)*
---
### 4. `action=searchByPackageNDC`
**Buscar utilizando el NDC del paquete.**
**Parámetros:**
- `action=searchByPackageNDC` *(requerido)*
- `q=0135-0537-02` *(requerido)*
---
### 5. `action=searchByUPC`
**Buscar utilizando el código UPC (Código de Producto Universal).**
**Parámetros:**
- `action=searchByUPC` *(requerido)*
- `q=0053076199642` *(requerido)*
---
### 6. `action=searchByNUI`
**Buscar utilizando el NUI (Identificador Único de NDF-RT).**
**Parámetros:**
- `action=searchByNUI` *(requerido)*
- `q=N0000185001` *(requerido)*
---
### 7. `action=searchByUNII`
**Buscar utilizando el UNII (Identificador Único de Ingrediente).**
**Parámetros:**
- `action=searchByUNII` *(requerido)*
- `q=362O9ITL9D` *(requerido)*
---
### 8. `action=searchByRXCUI`
**Buscar utilizando el RXCUI (Identificador Único de Concepto RxNorm).**
**Parámetros:**
- `action=searchByRXCUI` *(requerido)*
- `q=1046593` *(requerido)*
---
### 9. `action=getDetails`
**Recuperar detalles completos sobre un medicamento utilizando su `uuid`.**
**Parámetros:**
- `action=getDetails` *(requerido)*
- `q=10c0504e-269e-b058-e063-6394a90a5b84` *(requerido)*
---
## 📘 Notas
- Todos los puntos finales requieren el parámetro `action`.
- El parámetro `page` solo se usa en el punto final `search` y es opcional.
- Siempre extrae el `uuid` de los resultados de búsqueda y utilízalo con el punto final `getDetails` para obtener información completa sobre el medicamento.
**Buscar por nombre de medicamento.**
**Parámetros:**
- `action=search` *(requerido)*
- `q=panadol` *(requerido)*
- `page=1` *(opcional)* – para paginación
ejemplo :
{
"action": "search",
"q": "panadol",
"page": 1
}
La clave más importante en la respuesta es `uuid`, que usarás con `getDetails` para obtener detalles completos del medicamento.
Buscar - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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
}'
**Busque registros de medicamentos utilizando el Número de Solicitud.**
**Parámetros:**
- `action=searchByApplicationNumber` *(requerido)*
- `q=M013` (requerido)
Ejemplo
{
"action": "searchByApplicationNumber",
"q": "M013"
}
La clave más importante en la respuesta es `uuid`, que utilizará con `getDetails` para obtener los detalles completos del medicamento.
Buscar por número de aplicación. - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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"
}'
**Busque utilizando el NDC del producto (Código Nacional de Medicamentos).**
**Parámetros:**
- `action=searchByProductNDC` *(requerido)*
- `q=0135-0537` *(requerido)*
Ejemplo :
{
"action": "searchByProductNDC",
"q": "0135-0537"
}
La clave más importante en la respuesta es `uuid`, que utilizará con `getDetails` para obtener los detalles completos del medicamento.
Buscar por NDC de Producto. - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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"
}'
**Buscar por NDC de paquete .**
**Parámetros:**
- `action=searchByPackageNDC` *(requerido)*
- `q=0135-0537-02` *(requerido)*
- `page=1` *(opcional)* – para paginación
ejemplo :
{
"action": "searchByPackageNDC",
"q": "0135-0537-02"
}
La clave más importante en la respuesta es `uuid`, que utilizarás con `getDetails` para obtener los detalles completos del medicamento.
Buscar por número NDC del paquete. - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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"
}'
**Buscar por UPC.**
**Parámetros:**
- `action=searchByUPC` *(obligatorio)*
- `q=0053076199642` *(obligatorio)*
- `page=1` *(opcional)* – para paginación
ejemplo :
{
"action": "searchByUPC",
"q": "0053076199642"
}
La clave más importante en la respuesta es `uuid`, que utilizarás con `getDetails` para obtener los detalles completos del medicamento.
Buscar por UPC. - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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"
}'
**Buscar por NUI.**
**Parámetros:**
- `action=searchByNUI` *(requerido)*
- `q=N0000185001` *(requerido)*
- `page=1` *(opcional)* – para paginación
ejemplo :
{
"action": "searchByNUI",
"q": "N0000185001",
"page": 1
}
La clave más importante en la respuesta es `uuid`, que usarás con `getDetails` para obtener los detalles completos del medicamento.
Buscar por NUI. - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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
}'
**Buscar por UNII.**
**Parámetros:**
- `action=searchByUNII` *(requerido)*
- `q=362O9ITL9D` *(requerido)*
- `page=1` *(opcional)* – para paginación
ejemplo :
{
"action": "searchByUNII",
"q": "362O9ITL9D",
"page": 1
}
La clave más importante en la respuesta es `uuid`, que utilizarás con `getDetails` para obtener los detalles completos del medicamento.
Buscar por UNII. - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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
}'
**Buscar por RXCUI.**
**Parámetros:**
- `action=searchByRXCUI` *(requerido)*
- `q=1046593` *(requerido)*
- `page=1` *(opcional)* – para paginación
ejemplo :
{
"action": "searchByRXCUI",
"q": "1046593",
"page": 1
}
La clave más importante en la respuesta es `uuid`, que usarás con `getDetails` para obtener los detalles completos del fármaco.
Buscar por RXCUI. - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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
}'
**Recuperar todos los detalles sobre un medicamento usando su `uuid`.**
**Parámetros:**
- `action=getDetails` *(requerido)*
- `q=10c0504e-269e-b058-e063-6394a90a5b84` (requerido)
Ejemplo
{
"action": "getDetails",
"q": "10c0504e-269e-b058-e063-6394a90a5b84"
}
Obtener detalles del medicamento. - Características del Endpoint
Objeto | Descripción |
---|---|
Cuerpo de la Solicitud |
[Requerido] 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"
}'
Encabezado | Descripción |
---|---|
Autorización
|
[Requerido] Debería ser Bearer access_key . Consulta "Tu Clave de Acceso a la API" arriba cuando estés suscrito. |
Sin compromiso a largo plazo. Mejora, reduce o cancela en cualquier momento. La Prueba Gratuita incluye hasta 50 solicitudes.
Cada punto final devuelve datos completos sobre medicamentos aprobados por la FDA, incluidos campos como `uuid`, `nombre_comercial`, `nombre_del_fabricante`, `nombre_genérico` y varios identificadores como NDC, UPC y RXCUI. La estructura de datos varía ligeramente según el extremo, pero generalmente incluye una lista de resultados con información detallada sobre los medicamentos.
Los campos clave en la respuesta incluyen `uuid` (identificador único), `brand_name` (nombre comercial), `manufacturer_name` (empresa productora), `generic_name` (ingrediente activo) e identificadores como `ndc`, `upc` y `rxcui`. Estos campos ayudan a identificar y categorizar los medicamentos de manera efectiva.
Los datos de respuesta están organizados en un formato JSON, que típicamente contiene un campo `action`, un número de `page`, un `count` de resultados y un arreglo de `results`. Cada entrada en el arreglo de `results` incluye información detallada sobre medicamentos, lo que facilita su análisis y uso.
Cada endpoint proporciona información específica basada en los criterios de búsqueda, como nombres de medicamentos, números de solicitud, NDC y UPC. Por ejemplo, el endpoint `searchByApplicationNumber` devuelve medicamentos asociados con un número de solicitud específico, incluyendo su `uuid` para la recuperación de más detalles.
Los usuarios pueden personalizar las solicitudes especificando el parámetro `q` con su término de búsqueda (por ejemplo, nombre del medicamento, NDC) y el parámetro opcional `page` para la paginación. Esto permite búsquedas personalizadas y una recuperación de datos eficiente según las necesidades del usuario.
Los casos de uso típicos incluyen la recuperación de información sobre medicamentos para aplicaciones de atención médica, la gestión de inventarios en farmacias y fines de investigación. Los desarrolladores pueden integrar esta API para proporcionar a los usuarios datos detallados sobre medicamentos, mejorando las aplicaciones en tecnología de salud y gestión de farmacias.
La precisión de los datos se mantiene a través de actualizaciones regulares de fuentes autorizadas, incluyendo la FDA. La API se basa en bases de datos verificadas para asegurar que la información proporcionada sea actual y confiable, lo cual es crucial para aplicaciones de atención médica.
Los usuarios pueden esperar patrones de datos consistentes a través de los puntos finales, como la presencia de `uuid` en los resultados de búsqueda, que se vincula a información detallada sobre medicamentos. Además, se admite la paginación en el punto final `search`, lo que permite a los usuarios navegar a través de grandes conjuntos de datos de manera eficiente.
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.
Prices are listed in USD (United States Dollar), EUR (Euro), CAD (Canadian Dollar), AUD (Australian Dollar), and GBP (British Pound). We accept all major debit and credit cards. Our payment system uses the latest security technology and is powered by Stripe, one of the world's most reliable payment companies. If you have any trouble paying by card, just contact us at [email protected]
Additionally, if you already have an active subscription in any of these currencies (USD, EUR, CAD, AUD, GBP), that currency will remain for subsequent subscriptions. You can change the currency at any time as long as you don't have any active subscriptions.
The local currency shown on the pricing page is based on the country of your IP address and is provided for reference only. The actual prices are in USD (United States Dollar). When you make a payment, the charge will appear on your card statement in USD, even if you see the equivalent amount in your local currency on our website. This means you cannot pay directly with your local currency.
Occasionally, a bank may decline the charge due to its fraud protection settings. We suggest reaching out to your bank initially to check if they are blocking our charges. Also, you can access the Billing Portal and change the card associated to make the payment. If these does not work and you need further assistance, please contact our team at [email protected]
Prices are determined by a recurring monthly or yearly subscription, depending on the chosen plan.
API calls are deducted from your plan based on successful requests. Each plan comes with a specific number of calls that you can make per month. Only successful calls, indicated by a Status 200 response, will be counted against your total. This ensures that failed or incomplete requests do not impact your monthly quota.
Zyla API Hub works on a recurring monthly subscription system. Your billing cycle will start the day you purchase one of the paid plans, and it will renew the same day of the next month. So be aware to cancel your subscription beforehand if you want to avoid future charges.
To upgrade your current subscription plan, simply go to the pricing page of the API and select the plan you want to upgrade to. The upgrade will be instant, allowing you to immediately enjoy the features of the new plan. Please note that any remaining calls from your previous plan will not be carried over to the new plan, so be aware of this when upgrading. You will be charged the full amount of the new plan.
To check how many API calls you have left for the current month, refer to the 'X-Zyla-API-Calls-Monthly-Remaining' field in the response header. For example, if your plan allows 1,000 requests per month and you've used 100, this field in the response header will indicate 900 remaining calls.
To see the maximum number of API requests your plan allows, check the 'X-Zyla-RateLimit-Limit' response header. For instance, if your plan includes 1,000 requests per month, this header will display 1,000.
The 'X-Zyla-RateLimit-Reset' header shows the number of seconds until your rate limit resets. This tells you when your request count will start fresh. For example, if it displays 3,600, it means 3,600 seconds are left until the limit resets.
Yes, you can cancel your plan anytime by going to your account and selecting the cancellation option on the Billing page. Please note that upgrades, downgrades, and cancellations take effect immediately. Additionally, upon cancellation, you will no longer have access to the service, even if you have remaining calls left in your quota.
You can contact us through our chat channel to receive immediate assistance. We are always online from 8 am to 5 pm (EST). If you reach us after that time, we will get back to you as soon as possible. Additionally, you can contact us via email at [email protected]
To give you the opportunity to experience our APIs without any commitment, we offer a 7-day free trial that allows you to make up to 50 API calls at no cost. This trial can be used only once, so we recommend applying it to the API that interests you the most. While most of our APIs offer a free trial, some may not. The trial concludes after 7 days or once you've made 50 requests, whichever occurs first. If you reach the 50 request limit during the trial, you will need to "Start Your Paid Plan" to continue making requests. You can find the "Start Your Paid Plan" button in your profile under Subscription -> Choose the API you are subscribed to -> Pricing tab. Alternatively, if you don't cancel your subscription before the 7th day, your free trial will end, and your plan will automatically be billed, granting you access to all the API calls specified in your plan. Please keep this in mind to avoid unwanted charges.
After 7 days, you will be charged the full amount for the plan you were subscribed to during the trial. Therefore, it's important to cancel before the trial period ends. Refund requests for forgetting to cancel on time are not accepted.
When you subscribe to an API free trial, you can make up to 50 API calls. If you wish to make additional API calls beyond this limit, the API will prompt you to perform an "Start Your Paid Plan." You can find the "Start Your Paid Plan" button in your profile under Subscription -> Choose the API you are subscribed to -> Pricing tab.
Payout Orders are processed between the 20th and the 30th of each month. If you submit your request before the 20th, your payment will be processed within this timeframe.
Nivel de Servicio:
100%
Tiempo de Respuesta:
915ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
915ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
915ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
349ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
377ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
3,659ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
205ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
3,098ms
Nivel de Servicio:
88%
Tiempo de Respuesta:
2,512ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
205ms
Nivel de Servicio:
67%
Tiempo de Respuesta:
3,676ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
0ms
Nivel de Servicio:
67%
Tiempo de Respuesta:
3,676ms
Nivel de Servicio:
67%
Tiempo de Respuesta:
3,676ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
5,659ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
623ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
0ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
0ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1,637ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
623ms