MedLive API

All Meds Database is a fast and reliable RESTful API that allows you to search and retrieve comprehensive data of FDA-approved drugs supporting both partial and exact match queries, with support for pagination and detailed drug data retrieval. [ medicine - drugs - upc - unii - nui - rxcui - ndc ]

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.

 

API Documentation

Endpoints


**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.



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10236/search
                                                                            
                                                                        

Search - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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"
            ]
        }
    ]
}
                                                                                                                                                                                                                    
                                                                                                    

Search - CODE SNIPPETS


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.



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10237/search+by+application+number
                                                                            
                                                                        

Search By Application Number - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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"
            ]
        }
    ]
}
                                                                                                                                                                                                                    
                                                                                                    

Search By Application Number - CODE SNIPPETS


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.



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10238/search+by+product+ndc
                                                                            
                                                                        

Search By Product NDC - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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"
            ]
        }
    ]
}
                                                                                                                                                                                                                    
                                                                                                    

Search By Product NDC - CODE SNIPPETS


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.



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10239/search+by+package+ndc
                                                                            
                                                                        

Search By Package NDC - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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"
            ]
        }
    ]
}
                                                                                                                                                                                                                    
                                                                                                    

Search By Package NDC - CODE SNIPPETS


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.



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10240/search+by+upc
                                                                            
                                                                        

Search By UPC - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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"
            ]
        }
    ]
}
                                                                                                                                                                                                                    
                                                                                                    

Search By UPC - CODE SNIPPETS


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.



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10241/search+by+nui
                                                                            
                                                                        

Search By NUI - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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"
            ]
        }
    ]
}
                                                                                                                                                                                                                    
                                                                                                    

Search By NUI - CODE SNIPPETS


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.



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10242/search+by+unii
                                                                            
                                                                        

Search By UNII - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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"
            ]
        }
    ]
}
                                                                                                                                                                                                                    
                                                                                                    

Search By UNII - CODE SNIPPETS


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.



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10243/search+by+rxcui
                                                                            
                                                                        

Search By RXCUI - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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"
            ]
        }
    ]
}
                                                                                                                                                                                                                    
                                                                                                    

Search By RXCUI - CODE SNIPPETS


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"
}

 



                                                                            
POST https://www.zylalabs.com/api/6799/medlive+api/10244/get+medicine+details
                                                                            
                                                                        

Get Medicine Details - Endpoint Features

Object Description
Request Body [Required] Json
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
    "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 ยฎ Childrenย’s 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"
        ]
    }
}
                                                                                                                                                                                                                    
                                                                                                    

Get Medicine Details - CODE SNIPPETS


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"
}'

    

API Access Key & Authentication

After signing up, every developer is assigned a personal API access key, a unique combination of letters and digits provided to access to our API endpoint. To authenticate with the MedLive API simply include your bearer token in the Authorization header.
Headers
Header Description
Authorization [Required] Should be Bearer access_key. See "Your API Access Key" above when you are subscribed.

Simple Transparent Pricing

No long-term commitment. Upgrade, downgrade, or cancel anytime. Free Trial includes up to 50 requests.

๐Ÿš€ Enterprise

Starts at
$ 10,000/Year


  • Custom Volume
  • Custom Rate Limit
  • Specialized Customer Support
  • Real-Time API Monitoring

Customer favorite features

  • โœ”๏ธŽ Only Pay for Successful Requests
  • โœ”๏ธŽ Free 7-Day Trial
  • โœ”๏ธŽ Multi-Language Support
  • โœ”๏ธŽ One API Key, All APIs.
  • โœ”๏ธŽ Intuitive Dashboard
  • โœ”๏ธŽ Comprehensive Error Handling
  • โœ”๏ธŽ Developer-Friendly Docs
  • โœ”๏ธŽ Postman Integration
  • โœ”๏ธŽ Secure HTTPS Connections
  • โœ”๏ธŽ Reliable Uptime

MedLive API FAQs

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.

General FAQs

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.


Related APIs