getMyFeesEstimateForASIN
for an item on behalf of a selling partner before the selling partner sets the item's price. The selling partner can then take estimated fees into account. Each fees request must include an original identifier. This identifier is included in the fees estimate so you can correlate a fees estimate with the original request.getMyFeesEstimateForASIN
operation with an ASIN, the fee estimates might be different. This is because these estimates use the item's catalog size, which might not always match the actual size of the item sent to Amazon.Rate (requests per second) | Burst |
---|---|
1 | 2 |
x-amzn-RateLimit-Limit
response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see Usage Plans and Rate Limits in the Selling Partner API.{
"FeesEstimateRequest": {
"MarketplaceId": "string",
"IsAmazonFulfilled": true,
"PriceToEstimateFees": {
"ListingPrice": {
"currencyCode": "string",
"amount": 0
},
"Shipping": {
"currencyCode": "string",
"amount": 0
},
"Points": {
"pointsNumber": 0,
"pointsMonetaryValue": {
"currencyCode": "string",
"amount": 0
}
}
},
"Identifier": "string",
"OptionalFulfillmentProgram": "FBA_CORE"
}
}
curl --location --request POST 'https://sandbox.sellingpartnerapi-na.amazon.com/products/fees/v0/items//feesEstimate' \
--header 'Content-Type: application/json' \
--data-raw '{
"FeesEstimateRequest": {
"MarketplaceId": "string",
"IsAmazonFulfilled": true,
"PriceToEstimateFees": {
"ListingPrice": {
"currencyCode": "string",
"amount": 0
},
"Shipping": {
"currencyCode": "string",
"amount": 0
},
"Points": {
"pointsNumber": 0,
"pointsMonetaryValue": {
"currencyCode": "string",
"amount": 0
}
}
},
"Identifier": "string",
"OptionalFulfillmentProgram": "FBA_CORE"
}
}'
{
"payload": {
"FeesEstimateResult": {
"Status": "string",
"FeesEstimateIdentifier": {
"MarketplaceId": "string",
"SellerId": "string",
"IdType": "ASIN",
"IdValue": "string",
"IsAmazonFulfilled": true,
"PriceToEstimateFees": {
"ListingPrice": {
"currencyCode": "string",
"amount": 0
},
"Shipping": {
"currencyCode": "string",
"amount": 0
},
"Points": {
"pointsNumber": 0,
"pointsMonetaryValue": {
"currencyCode": "string",
"amount": 0
}
}
},
"SellerInputIdentifier": "string",
"OptionalFulfillmentProgram": "FBA_CORE"
},
"FeesEstimate": {
"TimeOfFeesEstimation": "2019-08-24T14:15:22Z",
"TotalFeesEstimate": {
"currencyCode": "string",
"amount": 0
},
"FeeDetailList": [
{
"FeeType": "string",
"FeeAmount": {
"currencyCode": "string",
"amount": 0
},
"FeePromotion": {
"currencyCode": "string",
"amount": 0
},
"TaxAmount": {
"currencyCode": "string",
"amount": 0
},
"FinalFee": {
"currencyCode": "string",
"amount": 0
},
"IncludedFeeDetailList": [
{
"FeeType": "string",
"FeeAmount": {
"currencyCode": "string",
"amount": 0
},
"FeePromotion": {
"currencyCode": "string",
"amount": 0
},
"TaxAmount": {
"currencyCode": "string",
"amount": 0
},
"FinalFee": {
"currencyCode": "string",
"amount": 0
}
}
]
}
]
},
"Error": {
"Type": "string",
"Code": "string",
"Message": "string",
"Detail": [
{}
]
}
}
},
"errors": [
{
"code": "string",
"message": "string",
"details": "string"
}
]
}