# Continente — 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 product data from Continente.pt, Portugal's leading supermarket chain. Search by keyword, browse categories, fetch full product details including nutritional info, and access current promotions and new arrivals.

**Category:** Food & Dining | **Website:** [continente.pt/](https://continente.pt/) | **Docs:** [parse.bot/marketplace/3c7d8ac1-7947-40e2-bb4a-4b3b3c4e3712/continente-pt-api](https://parse.bot/marketplace/3c7d8ac1-7947-40e2-bb4a-4b3b3c4e3712/continente-pt-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-continente-pt-api-3c7d8ac1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

Retrieve products listed under a specific category or subcategory slug on Continente.pt. The slug corresponds to the path segment after continente.pt in category page URLs. Returns paginated product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category URL path slug (e.g. 'frescos/talho/'). The slug corresponds to the path segment after continente.pt in category page URLs. |
| `start` | integer | No | Pagination offset for results (increments of 24) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-continente-pt-api-3c7d8ac1/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","start":"<integer>"}'
```

### get_novelties

Retrieve newly launched products from the Novidades section on Continente.pt. Returns paginated listings of new product arrivals.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `start` | integer | No | Pagination offset for results (increments of 24) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-continente-pt-api-3c7d8ac1/get_novelties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"start":"<integer>"}'
```

### get_product_detail

Fetch full details for a single product given its URL on continente.pt. Returns comprehensive product information including nutritional data when available. The URL is typically obtained from search_products or get_category_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full product URL on continente.pt (e.g. from search_products results[*].url) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-continente-pt-api-3c7d8ac1/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_promotions

Retrieve currently discounted products from the Oportunidades (deals) page on Continente.pt. Returns paginated promotional product listings with discount badges indicating the type and amount of discount.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `start` | integer | No | Pagination offset for results (increments of 24) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-continente-pt-api-3c7d8ac1/get_promotions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"start":"<integer>"}'
```

### search_products

Full-text search over Continente.pt product catalog. Returns paginated product summaries matching the query keyword. Pagination offset advances in steps of 24 (the page size). total_count gives the full result count for the query.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'leite', 'pao', 'frango') |
| `start` | integer | No | Pagination offset for results (increments of 24) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-continente-pt-api-3c7d8ac1/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>","start":"<integer>"}'
```
