# Amazon (Netherlands) — 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 Amazon.nl for products by keyword, retrieve full product details and specifications, read customer reviews, and browse category bestseller lists.

**Category:** E-commerce | **Website:** [amazon.nl/](https://amazon.nl/) | **Docs:** [parse.bot/marketplace/74c30085-e7e7-47bc-bc51-6955b3c580ac/amazon-nl-api](https://parse.bot/marketplace/74c30085-e7e7-47bc-bc51-6955b3c580ac/amazon-nl-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-amazon-nl-api-74c30085/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_bestsellers

Retrieve Amazon.nl Best Sellers for a category. Returns up to 30 top-selling items with rank, name, price, rating, review count, and ASIN. Category is a URL slug from the bestsellers path.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug used in the bestsellers URL path (e.g. electronics, toys, books, kitchen, sports, computers, garden). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-amazon-nl-api-74c30085/get_bestsellers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### get_product_details

Retrieve full product details by ASIN including name, brand, price, availability, description bullet points, technical specifications, and images. Returns upstream_error for non-existent ASINs (404). Technical specifications vary by product category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `asin` | string | Yes | Amazon Standard Identification Number (10-character alphanumeric product ID, e.g. B0F8L98RLY). |

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

### get_product_reviews

Retrieve customer reviews for a product by ASIN. Returns reviews embedded on the product page (typically up to 13 top reviews from multiple countries). Each review includes author, rating, title, body text, and review date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `asin` | string | Yes | Amazon Standard Identification Number (10-character alphanumeric product ID, e.g. B0DCNWN8NZ). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-amazon-nl-api-74c30085/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"asin":"<string>"}'
```

### search_products

Search for products on Amazon.nl by keyword. Returns paginated results with product names, prices, ratings, and thumbnails. Each page typically returns up to 48 results. Pagination via integer page counter. Sort and category filters are forwarded to Amazon's search engine.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category node ID or slug to filter results (e.g. electronics, toys, computers). |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword. |
| `sort` | string | No | Sort order for results. Accepted values include price-asc-rank (price low to high), price-desc-rank (price high to low), review-rank (average customer review), date-desc-rank (newest arrivals). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-amazon-nl-api-74c30085/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>","query":"<string>","sort":"<string>"}'
```
