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.
Base URL
Section titled “Base URL”https://api.amzconnect.ioAuthentication
Section titled “Authentication”Include an Authorization header with the value Bearer {YOUR_API_KEY} on every request. You can retrieve your API key from your dashboard.
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.
Requests & responses
Section titled “Requests & responses”- Endpoints use POST with a JSON body (
Content-Type: application/json). - All responses are JSON.
- The
storevalue 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.