Prime Eligible Products
You can advertise Prime Eligible products using Product Advertising API.
SearchItems
Add the Prime
filter under DeliveryFlags
parameter in SearchItems to fetch search results where every item contains atleast one offer which is eligible for prime shipping.
Request
The following request searches for prime eligible watches:
{
"PartnerTag": "xyz-20",
"PartnerType": "Associates",
"Keywords": "watches",
"DeliveryFlags": ["Prime"]
}
Response
The search results now contain only those products which have atleast one prime eligible offer.
{
"SearchResult": {
"Items": [
{
"ASIN": "059035342X",
"DetailPageURL": "https://www.amazon.com/dp/059035342X?tag=xyz-20&linkCode=osi&th=1&psc=1",
"ItemInfo": {
"Title": {
"DisplayValue": "Harry Potter and the Sorcerer's Stone",
"Label": "Title",
"Locale": "en_US"
}
}
},
...
],
"SearchURL": "https://www.amazon.com/s/?p_n_availability=-1&p_n_condition-type=New&field-keywords=harry+potter&search-alias=aps&tag=xyz-20&linkCode=osi",
"TotalResultCount": 146
}
}
GetItems
Add Offers.Listings.DeliveryInfo.IsPrimeEligible
under Resources
parameter in GetItems to get the prime shipping information of an item.
Request
The following request fetches prime eligible information for a particular product:
{
"PartnerTag": "xyz-20",
"PartnerType": "Associates",
"ItemIds": ["B00KL8SM92"],
"Resources": ["Offers.Listings.DeliveryInfo.IsPrimeEligible"]
}
Response
The response contains the prime eligible information, which can be used to advertise prime eligibility.
{
"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"
},
"DeliveryInfo": {
"IsAmazonFulfilled": true,
"IsPrimeEligible": true
},
"Id": "rJLO9mpI4zwbwSgxyZz19loODRQMUnZt3cOjLOq9c4z2s2PbwtD0FHbGCRF5CNXNGRpEDVUVUQnSN1%2BBo5cu1WFfULvO1k7kT0PmNeGpx5BLnaDoxjycUg%3D%3D",
"ViolatesMAP": false
}
]
}
}
]
}
}