# Amazon UK — 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 amazon.co.uk.

**Category:** E-commerce | **Website:** [amazon.co.uk/](https://amazon.co.uk/) | **Docs:** [parse.bot/marketplace/2af99046-e2a6-4093-96de-347cb3a91e67/amazon-co-uk-api](https://parse.bot/marketplace/2af99046-e2a6-4093-96de-347cb3a91e67/amazon-co-uk-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-co-uk-api-2af99046/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_best_sellers

Fetch ranked best seller products for a given category. Returns up to 30 top-selling products with rank, title, price, and rating. Category slugs match Amazon's internal department names.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug for best sellers (e.g. 'electronics', 'books', 'toys') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-amazon-co-uk-api-2af99046/get_best_sellers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### get_product_details

Fetch comprehensive product details for a specific ASIN including title, brand, price, rating, availability, feature bullets, images, and technical specifications. Returns a single product record. The ASIN must be a valid 10-character alphanumeric Amazon identifier.

**Estimated cost:** Metered

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

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

### get_search_suggestions

Retrieve search autocomplete suggestions for a given keyword prefix. Returns keyword suggestions as users would see in the Amazon search bar dropdown. Useful for discovering popular search terms and refining queries before executing a full search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword prefix |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-amazon-co-uk-api-2af99046/get_search_suggestions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_products

Full-text search over Amazon.co.uk product catalog. Returns a paginated list of product cards with ASIN, title, price, rating, and Prime eligibility. Prices may display in USD when the site detects international traffic. Pagination via integer page counter. Each product card is lightweight; use get_product_details for full specifications.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Amazon search alias for category filtering (e.g. 'aps' for all departments, 'electronics', 'books') |
| `page` | integer | No | Page number to fetch |
| `query` | string | Yes | Search keyword or phrase |
| `sort_by` | string | No | Sort criteria for results ordering |

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