Prices · Dosage · Side Effects · Interactions
/api/search to find medicines by name, then pass the returned id to /api/details for the full profile — prices, dosage, side effects and interactions. No auth, no API key, JSON responses.Search medicines by name. Returns up to 10 results, each with id, name and price.
| Param | Type | Status | 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" }
]
}Get the full pharmaceutical profile using the id from search results.
| Param | Type | Status | 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..." }
]
}
}