List Cost Periods

GET {{SL_BASE_URL}}/api/cogs/cost-periods?seller_id=<string>&marketplace_id=<string>&sku=<string>

This endpoint is to provide list of all cost periods existing on a product along with their relevant details. The endpoint need you to input product's sku, asin or parent_asin (any one) for which you want to get the list.

Request Params

KeyDatatypeRequiredDescription
seller_idstring(Required) The Amazon Seller ID
marketplace_idstring(Required) The Amazon Marketplace ID
skustring(Optional) The product SKU at Amazon / SL
Required if not asin or parent_asin
asinstring(Optional) The product ASIN at Amazon / SL
Required if not sku or parent_asin provided
parent_asinstring(Optional) The products' ParentASIN at Amazon / SL
Required if not sku or asin provided

HEADERS

KeyDatatypeRequiredDescription
AcceptstringRequired

RESPONSES

status: OK

[{&quot;product_sku&quot;:&quot;MyProductSKUxxx&quot;,&quot;asin&quot;:&quot;B0xxxxxxxx&quot;,&quot;parent_asin&quot;:null,&quot;internal_name&quot;:null,&quot;title&quot;:&quot;[product title here]&quot;,&quot;data&quot;:[{&quot;dates&quot;:{&quot;from_date&quot;:&quot;2021-01-01&quot;,&quot;to_date&quot;:&quot;2022-12-31&quot;},&quot;cost_elements&quot;:[{&quot;cost_element&quot;:&quot;Pick and Pack&quot;,&quot;provider&quot;:&quot;&quot;,&quot;notes&quot;:&quot;&quot;,&quot;total_amount&quot;:2.1,&quot;currency&quot;:&quot;USD&quot;,&quot;conversion_rate&quot;:1,&quot;units&quot;:1,&quot;amount&quot;:2.1},{&quot;cost_element&quot;:&quot;Shipping Charge&quot;,&quot;provider&quot;:&quot;&quot;,&quot;notes&quot;:&quot;&quot;,&quot;total_amount&quot;:3.18,&quot;currency&quot;:&quot;USD&quot;,&quot;conversion_rate&quot;:1,&quot;units&quot;:1,&quot;amount&quot;:3.18}]},{&quot;dates&quot;:{&quot;from_date&quot;:&quot;2020-09-01&quot;,&quot;to_date&quot;:&quot;2020-12-31&quot;},&quot;cost_elements&quot;:[{&quot;cost_element&quot;:&quot;Delivery Charge&quot;,&quot;provider&quot;:&quot;&quot;,&quot;notes&quot;:&quot;&quot;,&quot;total_amount&quot;:5.28,&quot;currency&quot;:&quot;USD&quot;,&quot;conversion_rate&quot;:1,&quot;units&quot;:1,&quot;amount&quot;:5.28}]}]}]