Release Notes 2025
Amazon Business API new features, bug fixes, and change log.
Get updates. Subscribe to our RSS feed.
March
Document API
What’s changed: Document API retention period
Supported regions: NA, EU, FE
Reports created using the Document API createReport
operation are now retained for a maximum of 30 days. This means that you can access a report for up to 30 days after creating it. After 30 days have passed, you will need to request a new report by calling the createReport
operation. For more information, see How to download invoices.
February 2025
Solution Provider Portal
What’s changed: Developer Central is now Solution Provider Portal
Supported regions: NA, EU, FE
Developer Central is now Solution Provider Portal (SPP), a centralized hub for managing Amazon Business API integrations. The developercentral.amazon.com URL will now redirect to https://solutionproviderportal.amazon.com. In addition to existing features from Developer Central, SPP introduces an API usage dashboard that allows you to view the number of successful API calls and errors by operation and app client.
What action is required?
- Existing Amazon Business developers: No action is required for existing developers. Any Amazon Business API integrations or App Center listings created through Developer Central will continue to function as usual.
- New Amazon Business developers: You will register directly on SPP to manage your API integrations, access the API sandbox, create and list applications, and review usage metrics.
January 2025
What’s new:shippingOptions
shippingOptions
Supported regions: NA, EU, FE
The Product Search API now returns shippingOptions
in the offer
object. shippingOptions
conveys comprehensive information about an offer’s available shipping options, and is returned at the offer level in all Product Search API operations. This object returns the following details:
shippingCost
: The cost associated with this shipping option.deliveryRange
: The range of delivery dates in UTC time zone.deliveryInformation
: String message containing the estimated delivery time and delivery price.thresholdCost
: The threshold for free shipping. When the total cost of the order exceeds this cost, shipping is free.
"shippingOptions": [
{
"shippingCost": {
"value": {
"amount": 6.99,
"currencyCode": "USD"
}
},
"deliveryRange": {
"max": "2024-12-28T04:00:00Z",
"min": "2024-12-28T04:00:00Z"
},
"deliveryInformation": "FREE delivery Friday, December 27 on orders shipped by Amazon over $35",
"thresholdCost": {
"value": {
"amount": 35,
"currencyCode": "USD"
}
}
},
{
"shippingCost": {
"value": {
"amount": 9.99,
"currencyCode": "USD"
}
},
"deliveryRange": {
"max": "2024-12-24T04:00:00Z",
"min": "2024-12-24T04:00:00Z"
},
"deliveryInformation": "$9.99 delivery Monday, December 23. Order within 20 hrs",
"thresholdCost": null
}
]
What’s new: customerReviewsSummary
customerReviewsSummary
Supported regions: NA, EU, FE
Product Search API now returns customerReviewsSummary
in the productsResult
object. customerReviewsSummary
contains information on a product’s customer ratings and is returned in the searchProductsRequest, productsRequest, and getProductsByAsins API responses. This object contains the following fields:
numberOfRatings
: The number of customer ratings for a product.starRating
: The star rating for a product.
This feature is only available for products displayed in eProcurement systems.
"CustomerReviewsSummary": {
"numberOfRatings": 3448,
"starRating": 4.8
}
What’s new: Prime badge and free shipping indicators for offers and products
Supported regions: NA, EU, FE
Product Search API now returns a PRIME_BADGE
for applicable products. This badge identifies when an offer is eligible for Amazon Business Prime free shipping and the customer has signed up for Business Prime. If the offer supports free shipping, a free shipping indicator is returned in the message
attribute. This badge is returned in the badges
field in the offers
object. All four Product Search API operations return this badge: searchProductsRequest, productsRequest, searchOffersRequest, and getProductsByAsins.
Sample response:
"badges": {
"badges": [
{
"type": "PRIME_BADGE",
"title": "Amazon Prime",
"link": null,
"fragments": null,
"message": null
}
]
}