Look up prices, dosage, side effects and drug interactions from a free public pharma database. Two GET endpoints, JSON responses, no auth.
2 endpoints. /api/search and /api/details.
JSON. Always success, data on success, error message on failure.
Not medical advice. Always consult a licensed doctor or pharmacist.
/api/search?q=name to find matches.id from any result you like./api/details?id=… for the full profile.details array and display each section.Both endpoints are GET, return JSON, and require no API key.
/api/search
search medicines by name
Search medicines by name. Returns up to 10 results, each with id, name and price.
| Param | Type | Description | |
|---|---|---|---|
| q | string | required | Medicine name to search |
{
"success": true,
"query": "panadol",
"count": 2,
"results": [
{ "id": "panadol-500mg-tab-200-s",
"name": "Panadol 500mg Tab 200's",
"price": "Rs. 36.0" }
]
}
/api/details
full pharmaceutical profile
Get the full pharmaceutical profile using the id returned by /api/search.
| Param | Type | Description | |
|---|---|---|---|
| id | string | required | The id slug from /api/search |
{
"success": true,
"medicine": {
"id": "panadol-500mg-tab-200-s",
"name": "Panadol 500mg Tab 200's",
"price": "Rs. 36.0",
"discount": "10% OFF",
"details": [
{ "section": "uses", "title": "Uses",
"content": "Used to treat mild to moderate pain..." }
]
}
}
A free medicine lookup tool and REST API. Search by name to get prices, dosage, uses, side effects and interactions.
Yes. No sign-up, no key, no cost. Fair-use limits apply.
Data is sourced from public pharma databases. Always consult a licensed doctor or pharmacist before taking any medication — MedSter is not medical advice.
Call /api/search?q=name, take the id from a result, then call /api/details?id=….
Description, ingredients, drug class, dosage form, uses, dose, over-dose, missed dose, how to use, when not to use, side effects, precautions, drug interactions, storage, control class and quick tips (where available).
Yes — the API is public and stable. If you expect heavy traffic, self-host or cache results client-side.
New tools, updates and exclusive resources delivered to WhatsApp.
MedSter is a free medicine search tool and REST API by AHM7xMakki — part of a 16-tool free API platform. About us →
Information provided is for reference only. Always consult a licensed doctor or pharmacist before taking, changing or stopping any medication.
For personal and non-commercial reference use. Do not use MedSter for self-diagnosis of serious conditions. Full terms →
MedSter by AHM7xMakki is a completely free medicine search tool and REST API. Look up prices, dosage, uses, side effects and drug interactions. No sign-up, no key.