# Systembolaget — 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 Systembolaget's complete beverage catalog to discover wines, spirits, and other drinks with detailed information like taste profiles, producer details, vintage year, and pricing. Find exactly what you're looking for by filtering products by type, region, and other characteristics to make informed purchasing decisions.

**Category:** E-commerce | **Website:** [www.systembolaget.se/](https://www.systembolaget.se/) | **Docs:** [parse.bot/marketplace/1b59dcc4-be6a-488d-8ebb-de62a6d9e03d/systembolaget-se-api](https://parse.bot/marketplace/1b59dcc4-be6a-488d-8ebb-de62a6d9e03d/systembolaget-se-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-systembolaget-se-api-1b59dcc4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full details for a single product by its product number. Returns comprehensive information including taste profile (clock scores), grape varieties, food pairings, organic/kosher/ethical certifications, and stock status. The product_number is available from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_number` | string | Yes | Product number from search_products results (e.g. '7735001', '7239901') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-systembolaget-se-api-1b59dcc4/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_number":"<string>"}'
```

### search_products

Full-text search across Systembolaget's product catalog with filters for category, country, and price range. Returns paginated results sorted by relevance (Score) by default. Each product includes pricing, origin, taste profile, and stock status. Omitting all filters returns the full catalog. Pagination via page number; up to 30 results per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Top-level beverage category filter |
| `country` | string | No | Country of origin filter (e.g. 'Italien', 'Frankrike', 'Sverige', 'Storbritannien') |
| `max_price` | string | No | Maximum price in SEK |
| `min_price` | string | No | Minimum price in SEK |
| `page` | integer | No | Page number (1-based) |
| `page_size` | integer | No | Results per page, maximum 30 |
| `query` | string | No | Text search query matching product names, producers, and regions (e.g. 'barolo', 'riesling', 'IPA') |
| `sort_by` | string | No | Field to sort results by |
| `sort_direction` | string | No | Sort order direction |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-systembolaget-se-api-1b59dcc4/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","country":"<string>","max_price":"<string>","min_price":"<string>","page":"<integer>","page_size":"<integer>","query":"<string>","sort_by":"<string>","sort_direction":"<string>"}'
```
