Returns the latest offers for a catalog item, excluding any where no_longer_visible_at is set
GET
/2024-09/marketplaces/catalog-items/{marketplace_catalog_item}/current-offers
curl \
--request GET 'https://app.merchanthq.com/api/2024-09/marketplaces/catalog-items/{marketplace_catalog_item}/current-offers' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"price": {
"value": 42.0,
"currency": "string"
},
"condition": "string",
"shipping_price": {
"value": 42.0,
"currency": "string"
},
"is_fulfilled_by_marketplace": true,
"marketplace_seller_id": "string",
"is_featured": true
}
]
}