GET
/
public
/
pricehistory
Get price history for a product
curl --request GET \
  --url https://api.joylink.io/public/pricehistory \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "asin": "<string>",
  "skip": 123
}'
[
  {
    "asin": "<string>",
    "merchant_id": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "retail_price": 123,
    "discounted_price": 123,
    "pessimistic_discounted_price": 123,
    "pessimistic_discounts": [
      "<string>"
    ],
    "encrypted_promo": "<string>",
    "promo_code": "<string>",
    "page_promo": "<string>",
    "is_lightning": true,
    "lightning_discount_percentage": 123,
    "promo_expiry_date": 123,
    "promo_discount_percentage": 123,
    "coupon_id": "<string>",
    "coupon_value": "<string>",
    "extra_discount_amount": "<string>"
  }
]

Authorizations

X-API-Key
string
header
required

Body

application/json

Response

200
application/json

Successfully retrieved price history

The response is of type object[].