Get product by ASIN and store
POST
/v1/get/product
const url = 'https://api.amzconnect.io/v1/get/product';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"asin":"B08N5WRWNW","store":"com"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.amzconnect.io/v1/get/product \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "asin": "B08N5WRWNW", "store": "com" }'Validates the request, checks your license usage quota, fetches the product from the database, and returns a JSON response.
Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
asin
required
The product ASIN.
string
Example
B08N5WRWNWstore
required
The store identifier (Amazon marketplace). Allowed values: com, co.uk, de, fr, it, es, ca, com.au, co.jp, in, com.br, com.mx, nl, se, pl, com.tr, ae, sg.
string
Example
comResponses
Section titled “Responses”Structured product data as JSON.
Missing or invalid API key.
Monthly usage quota exceeded.