Discover/Arogga API
live

Arogga APIarogga.com

Search Arogga's medicine catalog via API. Get MRP, discounted price, discount percentage, and stock status for medicines and healthcare products in Bangladesh.

This API takes change requests — .
Endpoint health
verified 4h ago
search_products
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

What is the Arogga API?

The Arogga API provides access to Arogga's medicine and healthcare product catalog through a single search_products endpoint that returns up to 12 fields per product, including MRP, discounted price, discount percentage, and real-time stock status. You can search by brand name, generic name, or keyword and paginate through the full result set.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination.
Search term for product name, generic name, or keyword (e.g. 'Napa', 'Paracetamol').
Number of results per page (1-50).
api.parse.bot/scraper/dd63a7bc-a1d0-4137-956f-c5dd2a1725e6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/dd63a7bc-a1d0-4137-956f-c5dd2a1725e6/search_products?page=1&query=Napa&per_page=10' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace arogga-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Arogga SDK — bounded, re-runnable; every call capped."""
from parse_apis.arogga_com_api import Arogga, ParseError

client = Arogga()

# Search for medicine products by name — limit caps total items fetched.
for product in client.products.search(query="Napa", limit=3):
    print(product.name, product.strength, product.pack_price, product.discount_percent)

# Take one result with .first() for a quick lookup.
item = client.products.search(query="Paracetamol", limit=1).first()
if item:
    print(item.name, item.brand, item.unit_price, item.selling_price)

# Typed error handling around a search call.
try:
    for p in client.products.search(query="Cetirizine", limit=2):
        print(p.name, p.form, p.in_stock)
except ParseError as e:
    print("error:", e)

print("exercised: products.search")
All endpoints · 1 totalmissing one? ·

Search for medicines and healthcare products by name or keyword. Returns paginated results with pricing details including MRP, discounted price, discount percentage, and stock status. Results are ordered by availability and popularity.

Input
ParamTypeDescription
pageintegerPage number for pagination.
querystringSearch term for product name, generic name, or keyword (e.g. 'Napa', 'Paracetamol').
per_pageintegerNumber of results per page (1-50).
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "total": "total number of matching products",
    "per_page": "results per page",
    "products": "array of product objects with pricing details"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 15,
      "per_page": 5,
      "products": [
        {
          "id": 12474,
          "form": "Tablet",
          "name": "Napa 500",
          "type": "medicine",
          "brand": "Beximco Pharmaceuticals Ltd.",
          "in_stock": true,
          "pack_mrp": 12,
          "strength": "500mg",
          "image_url": "https://cdn2.arogga.com/...",
          "pack_price": 10.8,
          "sales_unit": "Strip",
          "unit_price": 1.2,
          "rx_required": false,
          "generic_name": "Paracetamol",
          "selling_price": 1.08,
          "units_per_pack": 10,
          "discount_percent": 10
        }
      ]
    },
    "status": "success"
  }
}

About the Arogga API

What the API Returns

The search_products endpoint queries Arogga's medicine and healthcare product catalog and returns a paginated list of matching items. Each response includes a products array alongside page, per_page, and total fields so you can walk through the full result set programmatically. Each product object carries pricing details — MRP (maximum retail price), the discounted selling price, and the discount percentage — as well as stock availability status.

Query Parameters

The query parameter accepts a medicine brand name (e.g. "Napa"), a generic or active ingredient name (e.g. "Paracetamol"), or any freeform keyword. If query is omitted, the endpoint behaves as a general browse. Use per_page (1–50) to control how many results come back per call, and page to advance through large result sets. Results are ordered by availability first, then by popularity.

Coverage and Scope

Arogga is a Bangladeshi online pharmacy, so the catalog reflects medicines and healthcare products available in Bangladesh, priced in BDT. The total field lets you calculate the full page count before making additional requests, making it straightforward to mirror the catalog or build a price-comparison table. Stock status is returned per product, giving a real-time indication of what is currently available for order.

Reliability & maintenanceVerified

The Arogga API is a managed, monitored endpoint for arogga.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when arogga.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official arogga.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a medicine price-comparison tool showing MRP vs. discounted price across products
  • Monitor discount percentages on specific generics like Paracetamol or Metformin over time
  • Check real-time stock availability for a list of medicines before directing users to purchase
  • Index Arogga's catalog to power an autocomplete search for a healthcare app
  • Identify which brand-name equivalents of a generic ingredient are currently in stock
  • Calculate potential savings for a prescription by aggregating discounted prices across all line items
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Arogga have an official public developer API?+
Arogga does not publish a documented public developer API. The Parse Arogga API is the available programmatic option for accessing this product catalog data.
What does `search_products` return for each product?+
Each product object includes the product name, MRP, discounted price, discount percentage, and stock status. The wrapping response also includes page, per_page, and total for pagination.
Does the API cover product details pages, ingredient lists, or manufacturer information?+
Not currently. The API covers product name, pricing fields, discount percentage, and stock status from search results. You can fork it on Parse and revise to add an endpoint that fetches individual product detail pages with ingredient, dosage, or manufacturer data.
How does pagination work and what is the maximum page size?+
Pass page (starting at 1) and per_page (1 to 50) as query parameters. The response always includes a total count, so you can compute the number of pages needed to retrieve the full result set for a given query.
Does the API return results for products that are out of stock?+
Yes — the products array includes out-of-stock items; the stock status field on each product indicates availability. Results are ordered so in-stock items appear first.
Page content last updated . Spec covers 1 endpoint from arogga.com.
Related APIs in HealthcareSee all →
1mg.com API
Access data from 1mg.com.
boots.com API
Access data from boots.com.
aponeo.de API
Search for medications and health products from Aponeo.de, view detailed pricing and availability, browse by category, and discover current deals and promotions. Find specific products by PZN code, check bestsellers, or explore newly added items to compare prices and stock status.
fahorro.com API
Search and browse Farmacias del Ahorro's pharmacy product catalog to find medications, health products, and promotions with detailed information including prices, availability, and product specifications. Filter products by category, brand, and apply advanced search to discover deals and exclusive Marca Propia items.
apollo247.com API
Search and compare medicines, view detailed product information, discover lab tests, and locate nearby Apollo 24|7 pharmacy stores. Browse medical specialties and popular diagnostic services to plan your healthcare needs in one convenient platform.
torob.com API
Search for products and compare prices across thousands of sellers on Torob.com, with access to detailed product specs, seller information, and price history. Browse categories, discover similar items, and explore store inventories to find the best deals.
carrefour.eu API
Search and browse Carrefour's European online product catalog to access pricing, promotions, availability, and detailed product information including nutritional data. Retrieve comprehensive product details across categories to compare prices and find current deals in real-time.
muscleandstrength.com API
Search and browse Muscle & Strength supplements to find product details like pricing, available variants, and stock status. Quickly compare options and check availability across their catalog to make informed purchasing decisions.