Miraorthopediquedz APImiraorthopediquedz.shop ↗
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.
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: miraorthopediquedz_shop_api SDK — bounded, re-runnable."""
from parse_apis.miraorthopediquedz_shop_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")
# Take one product and inspect its images
try:
item = client.products.list(limit=1).first()
if item:
print("First product:", item.title)
for url in item.images[:3]:
print(" ", url)
except ParseError as e:
print("error:", e)
print("exercised: products.list")
Retrieve all products from the store catalog. Each product includes its title, price, and an array of image URLs. Returns the complete inventory in a single response (no pagination needed — the store serves all products at once).
No input parameters required.
{
"type": "object",
"fields": {
"total": "total number of products returned",
"products": "array of product objects with title, price, and images"
},
"sample": {
"data": {
"total": 572,
"products": [
{
"price": "2700",
"title": "Sabot femme sof066c",
"images": [
"https://4oey1j8tyx.ufs.sh/f/rbKe0tEW4UNk1Rmyr8Sb59GdmnRxC7Pz1IVHEkr2iOSa46B0"
]
},
{
"price": "3700",
"title": "sabot turkich 123",
"images": [
"https://4oey1j8tyx.ufs.sh/f/rbKe0tEW4UNk43OREOc2ned3uCZjh0cKsy9AFUgRQBGT51bW",
"https://4oey1j8tyx.ufs.sh/f/rbKe0tEW4UNkcYu4Ug2JohAVD70mOzPaRKdSqGNHbWpngQU5"
]
}
]
},
"status": "success"
}
}About the Miraorthopediquedz API
The Miraorthopediquedz API on Parse exposes 1 endpoint for the publicly available data on miraorthopediquedz.shop. 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.