Skip to content

API Overview

The AMZ Connect API is a single, clean REST API. This page covers the essentials; the full endpoint reference is in the sidebar under API Reference.

https://api.amzconnect.io

Include an Authorization header with the value Bearer {YOUR_API_KEY} on every request. You can retrieve your API key from your dashboard.

Terminal window
curl --request POST \
--url https://api.amzconnect.io/v1/get/product \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{ "asin": "B08N5WRWNW", "store": "com" }'

Keep your API key secret; do not expose it in client-side code.

  • Endpoints use POST with a JSON body (Content-Type: application/json).
  • All responses are JSON.
  • The store value is the Amazon marketplace, e.g. com, co.uk, de, fr, it, es, ca, com.au, co.jp, in, com.br, com.mx, nl, se, pl, com.tr, ae, sg.

See the API Reference for every endpoint, parameter, and response.