Discover/Arzonapteka API
live

Arzonapteka APIarzonapteka.uz

Access medicine prices, pharmacy offer counts, and regional data from arzonapteka.uz via 3 endpoints covering regions, popular products, and product detail.

Endpoint health
verified 1h ago
list_regions
list_popular_products
get_product
3/3 passing latest checkself-healing
Endpoints
3
Updated
2h ago

What is the Arzonapteka API?

The arzonapteka.uz API provides structured access to Uzbekistan's pharmacy price comparison data across 3 endpoints. Use list_regions to retrieve the full region tree with pharmacy counts per node, list_popular_products to pull the popular medicines rail with minimum UZS prices per region, and get_product to fetch a single medicine's composition, prescription status, minimum price, and pharmacy offer count for any geographic scope.

This call costs1 credit / call— charged only on success
Try it
Language of region names.
api.parse.bot/scraper/3530b4fb-2ff1-4e7b-bc20-f2df7691ec43/<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/3530b4fb-2ff1-4e7b-bc20-f2df7691ec43/list_regions?lang=en' \
  -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 arzonapteka-uz-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: ArzonApteka SDK — browse regions, popular medicines, and product details."""
from parse_apis.arzonapteka_uz_api import ArzonApteka, ProductNotFound

client = ArzonApteka()

# 1. Fetch the region tree and pick the first child region (a city/oblast).
top = client.regions.list(limit=1).first()
if top is None:
    raise SystemExit("no regions returned")
city = top.children[0]
print(f"Region: {city.name} (id={city.region_id}, pharmacies={city.pharmacy_count})")

# 2. List popular-product sections for that region.
section = client.sections.list(region_id=city.region_id, limit=1).first()
if section is None:
    raise SystemExit("no sections returned")
print(f"Section '{section.key}' has {len(section.products)} products")

# 3. Drill into the first product summary to get full detail.
summary = section.products[0]
print(f"  {summary.name} — {summary.min_price} {summary.currency}, "
      f"{summary.offers_count} offers, in_stock={summary.in_stock}")

product = summary.details(region_id=city.region_id)
print(f"  Full: {product.name}, form={product.form}, "
      f"package_quantity={product.package_quantity}")
for ingredient in product.active_ingredients:
    print(f"    ingredient: {ingredient.name}, dosage={ingredient.dosage_value}")

# 4. Point lookup by slug (using the slug we already discovered).
try:
    same = client.products.get(slug=product.slug)
    print(f"  Looked up: {same.name}, manufacturer={same.manufacturer}, "
          f"country={same.country}")
except ProductNotFound:
    print("  product not found")

print("exercised: regions.list / sections.list / summary.details / products.get")
All endpoints · 3 totalmissing one? ·

Returns the full region tree of Uzbekistan used by the site (country > region/city > district), each node with its numeric region_id, slug, coordinates and the number of pharmacies it covers. One round trip; a few dozen nodes total. region_id values feed the region_id input of the other endpoints.

Input
ParamTypeDescription
langstringLanguage of region names.
Response
{
  "type": "object",
  "fields": {
    "regions": "array of top-level region nodes; each node has region_id (integer), slug, name, latitude, longitude, pharmacy_count (integer, pharmacies in this region) and a nested children array of the same shape"
  },
  "sample": {
    "data": {
      "regions": [
        {
          "name": "Uzbekistan",
          "slug": "uzbekistan-2",
          "children": [
            {
              "name": "City Of Tashkent",
              "slug": "gorod-tashkent-2106",
              "children": [
                {
                  "name": "Almazar District",
                  "slug": "almazarskiy-rayon-2116",
                  "children": [],
                  "latitude": 41.32723356243705,
                  "longitude": 69.18764539440733,
                  "region_id": 2116,
                  "pharmacy_count": 95
                }
              ],
              "latitude": 41.250487562365635,
              "longitude": 69.21758204545955,
              "region_id": 2106,
              "pharmacy_count": 963
            }
          ],
          "latitude": 41.393544999998866,
          "longitude": 63.36148883011097,
          "region_id": 2,
          "pharmacy_count": 1977
        }
      ]
    },
    "status": "success"
  }
}

About the Arzonapteka API

Region and Geography Coverage

The list_regions endpoint returns the complete Uzbekistan region hierarchy — country, region/city, and district — as a tree of nodes. Each node carries a numeric region_id, a slug, latitude and longitude coordinates, and a pharmacy_count indicating how many pharmacies operate in that area. The region_id values from this endpoint are the filter input for both other endpoints. Passing region_id: 2 scopes prices to all of Uzbekistan; omitting it has the same effect.

Popular Products by Region

list_popular_products returns the site's curated popular medicines rail for a given region. Each entry in the products array includes product_id, slug, name, manufacturer, min_price in UZS, an in_stock boolean, and a count of pharmacy offers. Prices and offer counts shift with region_id, so the same medicine may show a different minimum price in Tashkent versus a district-level scope. The response also echoes back the region_id used for the price calculation.

Product Detail

get_product takes a product slug (sourced from list_popular_products) and an optional region_id. It returns identity fields (product_id, name, slug, commercial name), composition data (active ingredients with dosage), form (dosage form), package quantity, manufacturer, country, prescription status, in_stock, min_price in UZS, currency (always UZS), and an array of images. The region_id field in the response is null when no region was supplied, confirming that pricing reflects nationwide coverage.

Reliability & maintenanceVerified

The Arzonapteka API is a managed, monitored endpoint for arzonapteka.uz — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when arzonapteka.uz 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 arzonapteka.uz 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
1h ago
Latest check
3/3 endpoints 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
  • Track minimum medicine prices across Uzbekistan regions using min_price and region_id filtering
  • Build a pharmacy offer density map using pharmacy_count and coordinates from list_regions
  • Monitor popular medicine availability and stock status via the in_stock flag in list_popular_products
  • Compare prescription vs. non-prescription medicine pricing using the prescription field from get_product
  • Aggregate manufacturer presence across popular products using the manufacturer field
  • Identify which districts have the most pharmacy coverage using pharmacy_count at the district node level
  • Build a medicine lookup tool keyed on active ingredient composition returned by get_product
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does arzonapteka.uz have an official developer API?+
Arzonapteka.uz does not publish a documented public developer API or API portal as of this writing.
What does get_product return beyond price, and how does region_id affect it?+
get_product returns the full medicine card: name, slug, dosage form, active ingredients with dosage, package quantity, manufacturer, country of origin, prescription status, in_stock flag, min_price in UZS, and image URLs. The min_price and in_stock values are scoped to the region_id you supply; omitting region_id returns nationwide pricing. The response echoes back the region_id used, or null if none was provided.
Does the API return individual pharmacy names, addresses, or their per-pharmacy prices?+
Not currently. The API covers minimum price, offer count, and in-stock status aggregated across pharmacies — not individual pharmacy listings, addresses, or itemized per-pharmacy price tables. You can fork the API on Parse and revise it to add endpoints that expose individual pharmacy offers.
Does list_popular_products cover all medicines available on the site, or only the popular rail?+
It covers only the curated popular medicines rail the site surfaces for a given region. Products not featured in that rail — including less common medicines or those only searchable by name — are not included. You can fork the API on Parse and revise it to add a search or category-browse endpoint covering the broader catalogue.
Are product names returned in multiple languages?+
The lang parameter controls the language of region names, country labels, and UI strings. Product names, however, are returned as listed on the site and do not change with lang. International active ingredient names from get_product's composition field may be in Latin regardless of lang setting.
Page content last updated . Spec covers 3 endpoints from arzonapteka.uz.
Related APIs in HealthcareSee all →
uzum.uz API
Browse and search products across Uzum.uz marketplace categories, view detailed product information with customer reviews, and discover seller profiles and their product listings. Get real-time access to marketplace data including category organization, product details, pricing, and seller ratings all in one place.
1mg.com API
Access data from 1mg.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.
arogga.com API
Search for medicines and healthcare products across Arogga to instantly compare prices, view available discounts, and check real-time stock availability. Find the best deals on your needed medications and health items in one convenient search.
medplusmart.com API
Search for medicines and browse product categories on MedPlus Mart online pharmacy, then view detailed information like pricing, availability, and specifications for any medication. Get instant access to organized pharmacy data to compare medicines and find exactly what you need.
miraorthopediquedz.shop API
Browse and retrieve orthopedic products and medical supplies from Mira Orthopedique DZ's online store, including product details, pricing, and availability. Find the right parapharmacy items for your orthopedic needs by searching through their complete product catalog.
chemistwarehouse.co.nz API
Search for medications and health products at Chemist Warehouse NZ, browse categories, view detailed product information, and find nearby store locations. Get access to product pricing, descriptions, and store addresses all in one place.
ozon.kz API
Browse and search thousands of products on Ozon.kz, view detailed product information, reviews, and seller details across category listings. Get instant search suggestions and explore the complete category tree to discover items that match your needs.