> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gladeapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Amazon Marketplaces and Domain Codes for Glade API

> Glade API supports 13 Amazon marketplaces. Use the domain parameter to get marketplace-specific pricing, availability, and locale-aware data.

Glade API supports 13 Amazon marketplaces. Pass the `domain` query parameter on any request to get marketplace-specific data — currency, locale, pricing, Prime eligibility, and delivery context are all handled automatically per market.

***

## Supported domains

| Domain Code | Marketplace    | Currency | Amazon Host   |
| ----------- | -------------- | -------- | ------------- |
| `US`        | United States  | USD      | amazon.com    |
| `UK`        | United Kingdom | GBP      | amazon.co.uk  |
| `CA`        | Canada         | CAD      | amazon.ca     |
| `DE`        | Germany        | EUR      | amazon.de     |
| `FR`        | France         | EUR      | amazon.fr     |
| `IT`        | Italy          | EUR      | amazon.it     |
| `ES`        | Spain          | EUR      | amazon.es     |
| `AU`        | Australia      | AUD      | amazon.com.au |
| `IN`        | India          | INR      | amazon.in     |
| `MX`        | Mexico         | MXN      | amazon.com.mx |
| `BR`        | Brazil         | BRL      | amazon.com.br |
| `JP`        | Japan          | JPY      | amazon.co.jp  |
| `PL`        | Poland         | PLN      | amazon.pl     |

***

## Using the domain parameter

Add `domain` as a query parameter to any Glade API request to target a specific marketplace. If you omit `domain`, the request defaults to `US`.

For example, `?asin=B0D1XD1ZV3&domain=DE` fetches the German Amazon listing for that ASIN, returning prices in EUR, German Prime eligibility, and delivery estimates from amazon.de.

The following example fetches the same ASIN from two marketplaces:

```bash theme={null}
# US marketplace
curl "https://api.glade.dev/api/amazon/product?asin=B0D1XD1ZV3&domain=US" \
  -H "API-KEY: glade_live_lookup_your_key"

# UK marketplace
curl "https://api.glade.dev/api/amazon/product?asin=B0D1XD1ZV3&domain=UK" \
  -H "API-KEY: glade_live_lookup_your_key"
```

Each response is fully independent — the UK response returns prices in GBP, UK Prime status, and fulfillment information from amazon.co.uk.

<Tip>
  ASINs are not always the same across marketplaces. A product available in the US may have a different ASIN on amazon.de. Use the GTIN-to-ASIN endpoint to look up ASINs by barcode across markets.
</Tip>

***

## Locale-aware fields

Glade API normalizes all marketplace-specific data so you receive consistent field names regardless of which `domain` you query. Fields that vary by market are automatically resolved to the correct locale:

**Price objects** always include the following fields:

| Field      | Description                                                  |
| ---------- | ------------------------------------------------------------ |
| `symbol`   | The currency symbol (e.g. `$`, `£`, `€`)                     |
| `value`    | The numeric price value                                      |
| `currency` | The ISO 4217 currency code (e.g. `USD`, `GBP`, `EUR`)        |
| `display`  | A pre-formatted price string ready to render (e.g. `£29.99`) |

**Delivery and fulfillment fields** also reflect the selected marketplace:

* Delivery countdown strings use the locale's date and time conventions
* Prime eligibility is evaluated against the selected marketplace's Prime programme
* Fulfillment labels (e.g. "Fulfilled by Amazon") are returned in the marketplace's language
