主にAmazonの手数料を取得するAPIが提供されている。
getMyFeesEstimateForSKU [reference]
SKUを指定して販売手数料、カテゴリ成約手数料、FBA手数料などを取得するエンドポイント。
取得できる主な情報
- 販売手数料
- カテゴリ成約手数料(CDなどのメディア商品にかかる手数料)
- FBA手数料(発送代行とか)
レスポンスのサンプル
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
{ "payload": { "FeesEstimateResult": { "Status": "Success", "FeesEstimateIdentifier": { "MarketplaceId": "A1VC38T7YXB528", "SellerId": "A1EQ83YYYMZXXX", "IdType": "ASIN", "IdValue": "B01KJLXC7M", "IsAmazonFulfilled": true, "PriceToEstimateFees": { "ListingPrice": { "CurrencyCode": "JPY", "Amount": 3000 } }, "SellerInputIdentifier": "XXXX" }, "FeesEstimate": { "TimeOfFeesEstimation": "2022-01-23T14:25:36.000Z", "TotalFeesEstimate": { "CurrencyCode": "JPY", "Amount": 590 }, "FeeDetailList": [ { "FeeType": "ReferralFee", "FeeAmount": { "CurrencyCode": "JPY", "Amount": 300 }, "FeePromotion": { "CurrencyCode": "JPY", "Amount": 0 }, "FinalFee": { "CurrencyCode": "JPY", "Amount": 300 } }, { "FeeType": "VariableClosingFee", "FeeAmount": { "CurrencyCode": "JPY", "Amount": 0 }, "FeePromotion": { "CurrencyCode": "JPY", "Amount": 0 }, "FinalFee": { "CurrencyCode": "JPY", "Amount": 0 } }, { "FeeType": "PerItemFee", "FeeAmount": { "CurrencyCode": "JPY", "Amount": 0 }, "FeePromotion": { "CurrencyCode": "JPY", "Amount": 0 }, "FinalFee": { "CurrencyCode": "JPY", "Amount": 0 } }, { "FeeType": "FBAFees", "FeeAmount": { "CurrencyCode": "JPY", "Amount": 290 }, "FeePromotion": { "CurrencyCode": "JPY", "Amount": 0 }, "FinalFee": { "CurrencyCode": "JPY", "Amount": 290 }, "IncludedFeeDetailList": [ { "FeeType": "FBAPickAndPack", "FeeAmount": { "CurrencyCode": "JPY", "Amount": 290 }, "FeePromotion": { "CurrencyCode": "JPY", "Amount": 0 }, "FinalFee": { "CurrencyCode": "JPY", "Amount": 290 } } ] } ] } } } } |
getMyFeesEstimateForASIN [reference]
指定するのがASINなだけでgetMyFeesEstimateForSKUと一緒。