Mira Orthopedique DZ APImiraorthopediquedz.shop ↗
Access the full Mira Orthopedique DZ parapharmacy catalog via API. Retrieve product listings, prices, sizes, colors, and descriptions in structured JSON.
What is the Mira Orthopedique DZ API?
The Mira Orthopedique DZ API provides access to the complete orthopedic and parapharmacy product catalog from miraorthopediquedz.shop across 2 endpoints. The list_products endpoint returns every product in a single response — including title, slug, price, and images — while get_product delivers full product details such as SKU, sizes, colors, category, discount pricing, and description for any individual item.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/0c809e2d-137b-414a-b7ce-3c9e40813d75/list_products' \ -H 'X-API-Key: $PARSE_API_KEY'
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 miraorthopediquedz-shop-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: Mira Orthopedique SDK — bounded, re-runnable."""
from parse_apis.Mira_Orthopedique_API import MiraOrthopedique, ParseError
client = MiraOrthopedique()
# List products with a total-items cap
for product in client.products.list(limit=3):
print(product.title, product.price, len(product.images), "images")
# Drill down into one product's full details
item = client.products.list(limit=1).first()
try:
detail = client.products.get(slug=item.slug)
print(detail.title, detail.price, detail.category)
print("sizes:", detail.sizes)
print("colors:", detail.colors)
for opt in detail.other_options[:2]:
print("option:", opt.name, opt.values)
except ParseError as e:
print("error:", e)
print("exercised: products.list, products.get")
Retrieve all products from the store catalog. Each product includes its title, slug, price, and an array of image URLs. Returns the complete inventory in a single response. The slug field navigates to get_product for full details.
No input parameters required.
{
"type": "object",
"fields": {
"total": "total number of products returned",
"products": "array of product summaries with title, slug, price, and images"
},
"sample": {
"data": {
"total": 572,
"products": [
{
"slug": "Sof066c",
"price": "2700",
"title": "Sabot femme sof066c",
"images": [
"https://4oey1j8tyx.ufs.sh/f/rbKe0tEW4UNk1Rmyr8Sb59GdmnRxC7Pz1IVHEkr2iOSa46B0"
]
},
{
"slug": "Mixst003",
"price": "1900",
"title": "Bascket mixt 003",
"images": [
"https://4oey1j8tyx.ufs.sh/f/rbKe0tEW4UNk9WRJZFKw0qxfomEiYFLBzSQsUZePukT86jvO"
]
}
]
},
"status": "success"
}
}About the Mira Orthopedique DZ API
Catalog Endpoints
The list_products endpoint requires no parameters and returns the entire store inventory in one call. Each item in the products array includes a title, slug, price, and images array. The total field confirms the count of products returned. Slugs from this response (e.g. Sof066c, Mixst003) are the required input for the detail endpoint.
Product Detail
Pass any slug from the catalog to get_product to retrieve the full product record. The response includes sku, price, old_price (non-empty when a discount applies), sizes (e.g. shoe sizes), colors, category, images, a plain-text description, and an other_options array covering any additional option groups specific to that product. One round-trip per product.
Data Shape Notes
The old_price field is an empty string when no discount exists and a price string when the product is on sale, making it straightforward to filter discounted items. The other_options field is an array of objects each with a name and values list, covering product variants that don't fit neatly into sizes or colors. All image references are returned as full URL arrays in both endpoints.
The Mira Orthopedique DZ API is a managed, monitored endpoint for miraorthopediquedz.shop — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when miraorthopediquedz.shop 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 miraorthopediquedz.shop 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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a price comparison tool tracking current and discounted (
old_price) orthopedic products. - Sync the full product catalog into an inventory management system using
list_products. - Display size and color availability grids for each product using
sizesandcolorsfields. - Categorize and filter parapharmacy items by
categoryfor a custom storefront or directory. - Monitor product additions or removals by diffing
totalandslugvalues over time. - Enrich a healthcare supply database with SKU, description, and pricing data from
get_product. - Generate product feed exports for comparison shopping engines using structured price and image data.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 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.
Does Mira Orthopedique DZ offer an official developer API?+
What does `get_product` return beyond what `list_products` includes?+
list_products returns a summary per product: title, slug, price, and images. get_product adds the SKU, category, plain-text description, available sizes, colors, old_price (for sale items), and the other_options array covering additional variant groups. You need one get_product call per product to access those fields.Does the API support filtering or searching products by category or keyword?+
list_products returns the full catalog in a single unfiltered response with no query parameters. Filtering by category, keyword, or price must be done client-side against the returned array. You can fork this API on Parse and revise it to add a filtered or search endpoint.Does the API expose stock availability or inventory quantities?+
Are there any pagination controls for `list_products`?+
list_products returns the complete catalog in a single response with no page or offset parameters. The total field in the response tells you how many products were returned.