Skip to content

Getting Started

Get up and running with the AMZ Connect API in four steps.

Pick a plan on the pricing page and get your API key instantly. There is no approval process and no waiting.

Add your key to any WordPress plugin, app, or workflow you are building. Requests are authenticated with your API key.

Endpoints use POST with a JSON body. For example, look up a single product by ASIN:

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" }'

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.