# Miraorthopediquedz — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** E-commerce | **Website:** [miraorthopediquedz.shop/](https://miraorthopediquedz.shop/) | **Docs:** [parse.bot/marketplace/36d52561-dfd8-4e63-be7a-d1627d37af50/miraorthopediquedz-shop-api](https://parse.bot/marketplace/36d52561-dfd8-4e63-be7a-d1627d37af50/miraorthopediquedz-shop-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-miraorthopediquedz-shop-api-36d52561/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve full details for a single product by its slug. Returns title, price, category, images, available sizes, colors, and other product-specific options. A separate fetch per product (one round-trip).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug from list_products results (e.g. 'Sof066c', 'Mixst003'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-miraorthopediquedz-shop-api-36d52561/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_products

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-miraorthopediquedz-shop-api-36d52561/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
