# Amazon Product API Alternative for amazon.co.uk

**Use case:** 

Eight British best-seller ASINs resolved on amazon.co.uk with GBP prices and the UK site's availability wording. Residential proxies are routed through the UK automatically, which is what makes the buybox and stock line appear for a marketplace outside the US; the verified co.uk run used exactly this. Cost: 8 product rows at $0.004 = at most $0.03 a run.

## Input

```json
{
  "asins": [
    "B0C59CLN29",
    "B0080ZSQKS",
    "B07RSCPH4N",
    "B00FXNABPI",
    "B0BSXDVQG7",
    "B075JGKFJ6",
    "B01E6XAZFG",
    "B09TNFJX22"
  ],
  "domain": "co.uk",
  "inStockOnly": false,
  "maxPrice": 0,
  "sessions": 4,
  "perIp": 0.5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "asin": {
    "label": "Asin",
    "format": "string"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "list_price": {
    "label": "List price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "in_stock": {
    "label": "In stock",
    "format": "boolean"
  },
  "prime": {
    "label": "Prime",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratings_count": {
    "label": "Ratings count",
    "format": "integer"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "bsr_top": {
    "label": "Bsr top",
    "format": "integer"
  },
  "sold_by": {
    "label": "Sold by",
    "format": "string"
  },
  "variations_count": {
    "label": "Variations count",
    "format": "integer"
  },
  "image": {
    "label": "Image",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Scraper — Details, Prices & Availability by ASIN](https://apify.com/kestrel/amazon-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kestrel/amazon-product-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/kestrel/amazon-product-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
