# Coop (Switzerland) — 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 Coop.ch's entire product catalog, including detailed pricing, product information, and category organization. Find specific groceries, compare items across categories, and access up-to-date pricing data from Switzerland's Coop supermarket.

**Category:** Food & Dining | **Website:** [coop.ch/](https://coop.ch/) | **Docs:** [parse.bot/marketplace/9c474112-b5a8-4b1d-82e4-d2980dc5130f/coop-ch-api](https://parse.bot/marketplace/9c474112-b5a8-4b1d-82e4-d2980dc5130f/coop-ch-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-coop-ch-api-9c474112/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

List available product categories from the Coop.ch main navigation menu. Returns all top-level and sub-level food and non-food categories with their IDs and URL paths. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-coop-ch-api-9c474112/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_category_products

Get paginated products in a specific category. Loads the category page to establish a query session, then fetches product tiles. Supports pagination via page parameter (0-based). The category_slug helps construct the correct URL path for the category page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | Yes | Category ID (e.g. m_0001, m_0055). Obtainable from get_categories results. |
| `category_slug` | string | No | Category URL slug path (e.g. food/fruit-vegetables). Helps construct the correct URL. If omitted, a generic path is used. |
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number (0-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-coop-ch-api-9c474112/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","category_slug":"<string>","limit":"<integer>","page":"<integer>"}'
```

### get_product_details

Retrieve full product details from Coop.ch by product code. Returns comprehensive information including name, brand, price, description, nutrition facts, reviews, images, ingredients, labels, and availability status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | The unique product code (numeric string). Obtainable from search_products or get_category_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-coop-ch-api-9c474112/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### search_products

Search for products by keyword on Coop.ch. Returns matching products with basic info (name, brand, price, rating) plus related sub-categories via the suggest layer. Returns up to 5 product results per query. Not paginated; use get_category_products for paginated browsing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-coop-ch-api-9c474112/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
