# Edgars — 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.

> Search and browse fashion and lifestyle products from Edgars South Africa's online store, with the ability to explore collections and view detailed product information. Find exactly what you're looking for across their range of clothing, accessories, and home goods with powerful search capabilities.

**Category:** E-commerce | **Website:** [www.edgars.co.za/](https://www.edgars.co.za/) | **Docs:** [parse.bot/marketplace/68fe0c0a-96db-4d15-bd2c-1f9329b3d9db/edgars-co-za-api](https://parse.bot/marketplace/68fe0c0a-96db-4d15-bd2c-1f9329b3d9db/edgars-co-za-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-edgars-co-za-api-68fe0c0a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Get full product details by handle (URL slug). Returns complete product information including all variants (sizes, colors), options, images, description HTML, pricing, and metadata.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | Product URL slug (e.g. 'pre-boys-court-sneaker-white-black-39347101'). Obtainable from search_products results or list_collection_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-edgars-co-za-api-68fe0c0a/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"<string>"}'
```

### list_collection_products

List products in a specific collection by collection handle. Supports pagination. Collections are category groupings like 'women-sneakers', 'men-sneakers', 'dresses', 'sale'. Collection handles are discoverable from search_products results or site navigation.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `collection` | string | Yes | Collection URL slug (e.g. 'women-sneakers', 'men-sneakers', 'dresses', 'sale'). |
| `limit` | integer | No | Number of products per page (1-250). |
| `page` | integer | No | Page number for pagination (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-edgars-co-za-api-68fe0c0a/list_collection_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"collection":"<string>","limit":"<integer>","page":"<integer>"}'
```

### search_products

Search for products by keyword. Returns up to 10 matching products with basic info (title, price, vendor, image). Uses the store's predictive search, so partial matches and typo-tolerance may apply. Collections matching the query are also returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max number of products to return (1-10). |
| `product_type` | string | No | Resource type to search. Accepted values: product, collection, article, page. |
| `query` | string | Yes | Search keyword (e.g. 'sneakers', 'dresses', 'perfume'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-edgars-co-za-api-68fe0c0a/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","product_type":"<string>","query":"<string>"}'
```
