Skip to main content
Glade API lets you fetch live Amazon data with a single HTTP request. This guide walks you through creating an account, generating your API key, and making your first call — you will have real product data in your terminal in under five minutes.
1

Create your account

Go to the Glade API dashboard and sign up for a free account. No credit card is required — every new account includes 100 free units.Once you are logged in, navigate to the API Keys section and click New key. Your key is displayed exactly once at creation time, so copy it immediately and store it somewhere safe (for example, a .env file or your team’s secrets manager).Your key will look like this:
2

Make your first request

Replace glade_live_lookup_your_key with your actual API key and run the following command in your terminal:
This fetches live product data for the ASIN B0D1XD1ZV3 from the US marketplace. The domain parameter controls which of the 13 supported Amazon marketplaces Glade API queries.
3

Read the response

A successful response returns a JSON object with a data key containing the normalized product record:
Every price object includes a raw numeric value, an ISO 4217 currency code, and a locale-formatted display string. The isInStock and isPrime flags reflect live availability at the time of the request.
4

Try another marketplace

Change the domain parameter to target a different Amazon marketplace. For example, to fetch the same ASIN’s UK listing with GBP pricing:
You can substitute any of the 13 supported domain codes — US, UK, CA, DE, FR, IT, ES, AU, IN, MX, BR, JP, or PL — without changing anything else in your request. Glade API resolves the correct Amazon host, currency, and locale for each market automatically.

Next steps

Authentication

Learn how to pass your API key securely, understand all supported header formats, and handle authentication errors.

Interfaces: REST, GraphQL & MCP

Explore the three interfaces in depth and choose the one that fits your application architecture.

API Reference: Product

See every parameter, field, and response schema for the product endpoint.

Guide: Price Monitoring

Build a multi-marketplace price monitor using Glade API, polling, and webhook notifications.