Single Product

/product endpoint

Get an amazon Product

POST https://api.stellarscrape.com/v1/amazon/product

Endpoint to fetch a single product

Headers

Name
Value

Content-Type

application/json

Authorization

<apiKey>

Body

Name
Type
Description

asin

string

The asin of the amazon product

countries

array

The array of countries for the product.

userCountry

string

The countrycode of the country you want to see the delivery price for

Response

{
  status: 201,
  data: {
    productData: [ [Object] ],
    tokensLeft: 99999984,
    tokensUsed: 1,
    responseTime: 0
  },
  message: 'Request Successful'
}

Last updated