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

> Access data from eneba.com.

**Category:** Marketplaces | **Website:** [eneba.com/](https://eneba.com/) | **Docs:** [parse.bot/marketplace/a2f08677-c2f7-4703-8fa9-ad609140d0eb/eneba-com-api](https://parse.bot/marketplace/a2f08677-c2f7-4703-8fa9-ad609140d0eb/eneba-com-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-eneba-com-api-a2f08677/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Fetch comprehensive details for a single product by its slug. Returns full product information including description, system requirements, regions, languages, genres, developers, and DRM metadata. The slug is obtained from search_products or list_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The unique product identifier (slug) from search_products or list_products results (e.g., 'steam-arc-raiders-steam-key-pc-global') |

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

### get_product_offers

Get all available seller offers for a specific product, sorted by price ascending. Each offer includes merchant information with reputation ratings, pricing in USD and EUR, MSRP discount percentage, stock status, cashback details, the Eneba service fee (7.5%), and the computed total price including the fee. Returns up to 20 offers per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The unique product identifier (slug) from search_products or list_products results (e.g., 'steam-arc-raiders-steam-key-pc-global') |

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

### list_categories

List available product categories on Eneba. Returns a static list of main store category sections including games by platform, gift cards, and software.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eneba-com-api-a2f08677/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_products

Browse the Eneba catalog with optional filters for product type, platform/DRM, and region. Returns paginated results. When no filters are specified, returns products across all categories sorted by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page |
| `page` | integer | No | Page number (0-indexed) |
| `platform` | string | No | Platform/DRM filter |
| `region` | string | No | Region code filter (e.g., 'global', 'united_states', 'north_america', 'europe', 'lithuania') |
| `type` | string | No | Product type filter |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eneba-com-api-a2f08677/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","platform":"<string>","region":"<string>","type":"<string>"}'
```

### search_products

Full-text search over Eneba's product catalog. Returns paginated results with pricing and platform information. Pagination is 0-indexed. Each product includes its lowest USD price, platform/DRM, region availability, and wishlist popularity.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page |
| `page` | integer | No | Page number (0-indexed) |
| `query` | string | Yes | Search keyword |
| `region` | string | No | Region filter (e.g., 'global', 'united_states', 'north_america', 'europe', 'lithuania') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eneba-com-api-a2f08677/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>","region":"<string>"}'
```
