Returns historical price data for a catalog item with the specified granularity
GET
/2024-09/marketplaces/catalog-items/{marketplace_catalog_item}/price-history
curl \
--request GET 'https://app.merchanthq.com/api/2024-09/marketplaces/catalog-items/{marketplace_catalog_item}/price-history?from=2025-05-04&to=2025-05-04&granularity=day' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"from": "2025-05-04",
"to": "2025-05-04",
"lowest_featured_price": {
"value": 42.0,
"currency": "string"
},
"highest_featured_price": {
"value": 42.0,
"currency": "string"
},
"lowest_fulfilled_by_marketplace_price": {
"value": 42.0,
"currency": "string"
},
"highest_fulfilled_by_marketplace_price": {
"value": 42.0,
"currency": "string"
},
"lowest_fulfilled_by_merchant_price": {
"value": 42.0,
"currency": "string"
},
"highest_fulfilled_by_merchant_price": {
"value": 42.0,
"currency": "string"
}
}
]
}