> ## 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.

# Get Started with Glade API: Fetch Amazon Data in Minutes

> Learn how to create an API key, authenticate, and make your first Glade API call to fetch Amazon product data in under five minutes.

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.

<Steps>
  <Step title="Create your account">
    Go to the [Glade API dashboard](https://gladeapi.com/auth/login?next=/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:

    ```text theme={null}
    glade_live_lookup_xxxxxxxxxxxxxxxxxxxx
    ```
  </Step>

  <Step title="Make your first request">
    Replace `glade_live_lookup_your_key` with your actual API key and run the following command in your terminal:

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

    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.
  </Step>

  <Step title="Read the response">
    A successful response returns a JSON object with a `data` key containing the normalized product record:

    ```json theme={null}
    {
      "data": {
        "amazonProduct": {
          "asin": "B0D1XD1ZV3",
          "title": "Example Product Title",
          "brand": "ExampleBrand",
          "price": {
            "value": 34.99,
            "currency": "USD",
            "display": "$34.99"
          },
          "rating": 4.5,
          "ratingsTotal": 1248,
          "isInStock": true,
          "isPrime": true
        }
      }
    }
    ```

    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.
  </Step>

  <Step title="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:

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

    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.
  </Step>
</Steps>

## Next steps

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/authentication">
    Learn how to pass your API key securely, understand all supported header formats, and handle authentication errors.
  </Card>

  <Card title="Interfaces: REST, GraphQL & MCP" icon="plug" href="/concepts/interfaces">
    Explore the three interfaces in depth and choose the one that fits your application architecture.
  </Card>

  <Card title="API Reference: Product" icon="box" href="/api-reference/product">
    See every parameter, field, and response schema for the product endpoint.
  </Card>

  <Card title="Guide: Price Monitoring" icon="chart-line" href="/guides/price-monitoring">
    Build a multi-marketplace price monitor using Glade API, polling, and webhook notifications.
  </Card>
</CardGroup>
