PA-API will be deprecated on April 30th, 2026. Please migrate to Creators API. See documentation at https://affiliate-program.amazon.com/creatorsapi/docs/en-us/introduction.
This documentation site is no longer maintained, and contains outdated information. Please refer to Creators API documentation.
Offers is deprecated. Use OffersV2 instead.
Buying Price
Add Offers.Listings.Price under Resources parameter to get the BuyBox price for an item.
Request
The following request fetches BuyBox price for a particular product:
{
"PartnerTag": "xyz-20",
"PartnerType": "Associates",
"ItemIds": ["B00KL8SM92"],
"Resources": ["Offers.Listings.Price"]
}
Response
The response contains the price information as requested.
{
"ItemsResult": {
"Items": [
{
"ASIN": "B00KL8SM92",
"DetailPageURL": "https://www.amazon.com/dp/B00KL8SM92?tag=xyz-20&linkCode=ogi&th=1&psc=1",
"Offers": {
"Listings": [
{
"Condition": {
"DisplayValue": "nuevo",
"Label": "Condición",
"Locale": "es_US",
"Value": "New"
},
"Id": "N0kFOTB4itXUSJCGGk%2F2GXsRB86%2FcyUt8%2F9rnuaegoBVvaCHWMOItGLYfIAUN07c9MqVsd9nnVY9YacKmA%2B1x8rukHT8N%2Bzk87vc8hTGrEp9I3ocDXBwrg%3D%3D",
"Price": {
"Amount": 29.99,
"Currency": "USD",
"DisplayAmount": "$29.99",
"Savings": {
"Amount": 5.3,
"Currency": "USD",
"DisplayAmount": "$5.30 (15%)",
"Percentage": 15
}
},
"ViolatesMAP": false
}
]
}
}
]
}
}