# Idealo — 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 for products on Idealo.de and retrieve detailed information including current seller offers, price history, technical specifications, and user and expert reviews. Compare prices across sellers and access comprehensive product data to evaluate deals.

**Category:** E-commerce | **Website:** [idealo.de/](https://idealo.de/) | **Docs:** [parse.bot/marketplace/41db6c26-6500-4319-9a64-1c36938534e7/idealo-de-api](https://parse.bot/marketplace/41db6c26-6500-4319-9a64-1c36938534e7/idealo-de-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-idealo-de-api-41db6c26/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Get detailed technical specifications for a product, grouped by category (e.g. Display, Hardware, Software). Each category contains key-value pairs of specification names and their values.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Idealo product ID from search_products results (e.g. '203235721'). |
| `slug` | string | Yes | Product URL slug from search_products results (e.g. 'iphone-15-apple'). |

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

### get_product_offers

Get all seller offers for a specific product. Returns a list of offers with price, shipping cost, and shop information. Prices are formatted as German locale strings with euro symbol.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Idealo product ID from search_products results (e.g. '203235721'). |
| `slug` | string | Yes | Product URL slug from search_products results (e.g. 'iphone-15-apple'). |

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

### get_product_price_history

Get historical price data for a product over a given period. Prices are in euro cents (divide by 100 for EUR). Returns daily data points and summary statistics including lowest, highest, and average prices.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `period` | string | No | Time period for price history. Accepted values: '3M', '6M', '1Y'. |
| `product_id` | string | Yes | Idealo product ID from search_products results (e.g. '203235721'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-idealo-de-api-41db6c26/get_product_price_history \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"period":"<string>","product_id":"<string>"}'
```

### get_product_reviews

Get user reviews for a product. Returns reviews with author name, date, and review text. Only reviews with non-empty text are included.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Idealo product ID from search_products results (e.g. '203235721'). |
| `slug` | string | Yes | Product URL slug from search_products results (e.g. 'iphone-15-apple'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-idealo-de-api-41db6c26/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","slug":"<string>"}'
```

### get_product_tests

Get expert test reports and reviews for a product from professional publications. Returns source publication, grade/score, and a summary of the test verdict.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Idealo product ID from search_products results (e.g. '203235721'). |
| `slug` | string | Yes | Product URL slug from search_products results (e.g. 'iphone-15-apple'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-idealo-de-api-41db6c26/get_product_tests \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","slug":"<string>"}'
```

### search_products

Search for products by keyword on Idealo. Returns up to 10 matching products with their IDs and URL slugs for use in other endpoints. Results are ordered by relevance within the matched category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'iPhone 15', 'Samsung Galaxy S24'). |

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