Get test product
POST
/v1/test/product
const url = 'https://api.amzconnect.io/v1/test/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/test/product \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "asin": "B08N5WRWNW", "store": "com" }'Returns a sample product response so you can test your integration without using your quota.
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”Sample product data as JSON.
Missing or invalid API key.