Getting Started
Get up and running with the AMZ Connect API in four steps.
1. Get your API key
Section titled “1. Get your API key”Pick a plan on the pricing page and get your API key instantly. There is no approval process and no waiting.
2. Integrate it anywhere
Section titled “2. Integrate it anywhere”Add your key to any WordPress plugin, app, or workflow you are building. Requests are authenticated with your API key.
3. Send a request
Section titled “3. Send a request”Endpoints use POST with a JSON body. For example, look up a single product by ASIN:
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" }'4. Receive structured JSON
Section titled “4. Receive structured JSON”You get back clean, structured data, ready to use:
{ "asin": "B0CABC1234", "title": "AMZN VSS Elite 4K60fps Touch Screen Wi-Fi Action Camera", "main_image": { "link": "https://m.media-amazon.com/images/I/71xZ24K0b.jpg" }, "buybox_winner": { "price": { "raw": "$199.99", "value": 199.99, "currency": "USD" }, "is_prime": true, "availability": { "raw": "In Stock", "type": "in_stock", "dispatch_days": 1 } }, "rating": 4.6, "ratings_total": 2941}That is it. From here you can fetch product data on demand and cache it however your project needs.