Al Dawaa APIal-dawaa.com ↗
Search for medications across Al-Dawaa Pharmacy locations in Saudi Arabia and instantly check their stock status, pricing, and detailed product information. Get real-time availability data to find the exact medications you need and compare prices before visiting or ordering.
curl -X GET 'https://api.parse.bot/scraper/92c4c848-a0cc-4cdf-8f91-8e0dbd2cf735/search_medication?page=0&query=panadol&page_size=20' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for medications by name or keyword. Returns a paginated list of matching products with their availability status, price, and whether a prescription is required. Pagination is 0-indexed; omitting page returns the first page.
| Param | Type | Description |
|---|---|---|
| page | integer | 0-indexed page number for pagination. |
| queryrequired | string | Search term for medication name, brand, or keyword (e.g. 'panadol', 'aspirin'). |
| page_size | integer | Number of results per page (1-100). |
{
"type": "object",
"fields": {
"query": "The search term used",
"products": "Array of matching medication products with availability info",
"pagination": "Object with current_page, page_size, total_pages, total_results"
},
"sample": {
"data": {
"query": "panadol",
"products": [
{
"url": "/Medicine-and-Treatment/Self-Medication/Cough%2C-Cold-%26-Allergy/Panadol-Cold-And-Flu%2C-Night-Time%2C-For-Common-Cold---24-Caplets/p/101688",
"code": "101688",
"name": "Panadol Cold And Flu, Night Time, For Common Cold - 24 Caplets",
"brand": "Panadol",
"price": 12.3,
"currency": "SAR",
"in_stock": true,
"stock_status": "inStock",
"prescription_required": false
}
],
"pagination": {
"page_size": 20,
"total_pages": 1,
"current_page": 0,
"total_results": 19
}
},
"status": "success"
}
}About the Al Dawaa API
The Al Dawaa API on Parse exposes 2 endpoints for the publicly available data on al-dawaa.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.