# Euronics Italy — 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 search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.

**Category:** E-commerce | **Website:** [www.euronics.it/televisori-e-accessori/tel](https://www.euronics.it/televisori-e-accessori/tel) | **Docs:** [parse.bot/marketplace/ccb2971f-a3b6-4c18-ab2b-62284ca4e68e/euronics-it-api](https://parse.bot/marketplace/ccb2971f-a3b6-4c18-ab2b-62284ca4e68e/euronics-it-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-euronics-it-api-ccb2971f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_products

Retrieve product listings from a specified category on Euronics Italy. When page is 0 all pages are fetched; a positive integer fetches that single page. Each page contains up to 48 products. Supports limiting total results via the limit parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Demandware category ID for the product category to browse. Accepted values include 'tv', 'smartphones', 'audio', 'notebook-e-tablet', 'elettrodomestici'. |
| `limit` | integer | No | Maximum number of products to return. 0 for no limit. |
| `page` | integer | No | Page number (1-based). Set to 0 to fetch all pages. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-euronics-it-api-ccb2971f/get_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","limit":"<integer>","page":"<integer>"}'
```

### search_products

Full-text search across the Euronics Italy product catalog. Returns all matching products unless a limit is specified. The query matches product names, brands, and categories.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return. 0 for no limit. |
| `query` | string | Yes | Search query (e.g., 'samsung tv 55', 'lg oled'). |

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