HomeDocumentationCode SamplesAPI ReferenceAnnouncementsModelsRelease NotesFAQGitHubVideos
Developer HubAPI StatusSupport
Documentation
Developer HubAPI StatusSupport

Product Pricing API v0 Use Case Guide

How to use the Product Pricing API.

API Version: v0

What is the Product Pricing API?

The Selling Partner API for Product Pricing (Product Pricing API) programmatically retrieves product pricing and offer information for Amazon Marketplace products.

Terminology

  • SKU: Stock Keeping Unit that identifies an item in the Amazon catalog.
  • ASIN: The Amazon Standard Identification Number of an item.
  • URL-encoding: URL encoding converts characters into a format that can be transmitted over the internet.

Tutorial: Retrieve pricing information for seller's offer listings

This tutorial shows you how to retrieve pricing information for a seller's offer listings based on seller SKU or ASIN.

Prerequisites

To successfully complete this tutorial, you must have the following:

Step 1. Call getPricing

You can call the getPricing operation to get pricing information based on either a list of SKUs or ASINs. This operation accepts a list of up to 20 SKUs or ASINs as a query parameter.

Query parameters

Name Description Schema
MarketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned. Type: string
Asins A list of up to 20 Amazon Standard Identification Number (ASIN) values used to identify items in the given marketplace.
Max count: 20
Type: array
Skus A list of up to 20 seller SKU values used to identify items in the given marketplace.
Max count: 20
Type: array
ItemType Indicates whether ASIN values or seller SKU values are used to identify items. If you specify Asin, the information in the response will be dependent on the list of ASINs you provide in the Asins parameter. If you specify Sku, the information in the response will be dependent on the list of SKUs you provide in the Skus parameter.
Possible values: Asin, Sku.
Type: enum (ItemType)
CustomerType Indicates whether to request pricing information from the point of view of consumer or business buyers. Default is Consumer. Type: enum (CustomerType)
OfferType Indicates whether to request pricing information for the seller's B2C (business-to-consumer) or B2B (business-to-business) offers. Default is B2C. Type: enum (OfferType)

Response

A successful response includes the following:

Name Description Schema
payload
optional
The payload for the getPricing and getCompetitivePricing operations. PriceList
errors
optional
One or more unexpected errors occurred during the operation. ErrorList

Request example using an ASIN:

GET https://sellingpartnerapi-na.amazon.com/products/pricing/v0/price ?MarketplaceId=ATVPDKIKX0DER &Asins=B00V5DG6IQ,B00551Q3CS &ItemType=Asin

Response example

{ "payload": [ { "status": "Success", "ASIN": "B00V5DG6IQ", "Product": { "Identifiers": { "MarketplaceASIN": { "MarketplaceId": "ATVPDKIKX0DER", "ASIN": "B00V5DG6IQ" }, "SKUIdentifier": { "MarketplaceId": "", "SellerId": "", "SellerSKU": "" } }, "Offers": [ { "BuyingPrice": { "ListingPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "LandedPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 } }, "RegularPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "FulfillmentChannel": "MERCHANT", "ItemCondition": "New", "ItemSubCondition": "New", "SellerSKU": "NABetaASINB00V5DG6IQ" } ] } }, { "status": "Success", "ASIN": "B00551Q3CS", "Product": { "Identifiers": { "MarketplaceASIN": { "MarketplaceId": "ATVPDKIKX0DER", "ASIN": "B00551Q3CS" }, "SKUIdentifier": { "MarketplaceId": "", "SellerId": "", "SellerSKU": "" } }, "Offers": [ { "BuyingPrice": { "ListingPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "LandedPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 } }, "RegularPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "FulfillmentChannel": "MERCHANT", "ItemCondition": "New", "ItemSubCondition": "New", "SellerSKU": "NABetaASINB00551Q3CS" } ] } } ] }

Request example using a SKU:

GET https://sellingpartnerapi-na.amazon.com/products/pricing/v0/price ?MarketplaceId=ATVPDKIKX0DER &Skus=NABetaASINB00V5DG6IQ,NABetaASINB00551Q3CS &ItemType=Sku

Response example

{ "payload": [ { "status": "Success", "SellerSKU": "NABetaASINB00V5DG6IQ", "Product": { "Identifiers": { "MarketplaceASIN": { "MarketplaceId": "ATVPDKIKX0DER", "ASIN": "B00V5DG6IQ" }, "SKUIdentifier": { "MarketplaceId": "ATVPDKIKX0DER", "SellerId": "AXXXXXXXXXXXXX", "SellerSKU": "NABetaASINB00V5DG6IQ" } }, "Offers": [ { "BuyingPrice": { "ListingPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "LandedPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 } }, "RegularPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "FulfillmentChannel": "MERCHANT", "ItemCondition": "New", "ItemSubCondition": "New", "SellerSKU": "NABetaASINB00V5DG6IQ" } ] } }, { "status": "Success", "SellerSKU": "NABetaASINB00551Q3CS", "Product": { "Identifiers": { "MarketplaceASIN": { "MarketplaceId": "ATVPDKIKX0DER", "ASIN": "B00551Q3CS" }, "SKUIdentifier": { "MarketplaceId": "ATVPDKIKX0DER", "SellerId": "AXXXXXXXXXXXXX", "SellerSKU": "NABetaASINB00551Q3CS" } }, "Offers": [ { "BuyingPrice": { "ListingPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "LandedPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 } }, "RegularPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "FulfillmentChannel": "MERCHANT", "ItemCondition": "New", "ItemSubCondition": "New", "SellerSKU": "NABetaASINB00551Q3CS" } ] } } ] }

Tutorial: Retrieve competitive pricing information for seller's offer listings

This tutorial shows you how to retrieve competitive pricing information for a seller's offer listings based on seller SKU or ASIN.

Prerequisites

To successfully complete this tutorial, you must have the following:

Step 1. Call getCompetitivePricing

You can call the getCompetitivePricing operation to get competitive pricing information based on either a list of SKUs or ASINs. This operation accepts a list of up to 20 SKUs or ASINs as a query parameter.

Query parameters:

Name Description Schema
MarketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned. Type: string
Asins A list of up to 20 Amazon Standard Identification Number (ASIN) values used to identify items in the given marketplace.
Max count: 20
Type: array
Skus A list of up to 20 seller SKU values used to identify items in the given marketplace.
Max count: 20
Type: array
ItemType Indicates whether ASIN values or seller SKU values are used to identify items. If you specify Asin, the information in the response will be dependent on the list of ASINs you provide in the Asins parameter. If you specify Sku, the information in the response will be dependent on the list of SKUs you provide in the Skus parameter.
Possible values: Asin, Sku.
Type: enum (ItemType)
CustomerType Indicates whether to request pricing information from the point of view of consumer or business buyers. Default is Consumer. Type: enum (CustomerType)

Response

A successful response includes the following:

Name Description Schema
payload
optional
The payload for the getPricing and getCompetitivePricing operations. PriceList
errors
optional
One or more unexpected errors occurred during the operation. ErrorList

Request example using an ASIN:

GET https://sellingpartnerapi-na.amazon.com/products/pricing/v0/competitivePrice ?MarketplaceId=ATVPDKIKX0DER &Asins=B00V5DG6IQ,B00551Q3CS &ItemType=Asin

Response example

{ "payload": [ { "status": "Success", "ASIN": "B00V5DG6IQ", "Product": { "Identifiers": { "MarketplaceASIN": { "MarketplaceId": "ATVPDKIKX0DER", "ASIN": "B00V5DG6IQ" }, "SKUIdentifier": { "MarketplaceId": "", "SellerId": "", "SellerSKU": "" } }, "CompetitivePricing": { "CompetitivePrices": [ { "CompetitivePriceId": "4545645646", "Price": { "LandedPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 130 }, "Shipping": { "CurrencyCode": "USD", "Amount": 120 }, "Points": { "PointsNumber": 130, "PointsMonetaryValue": { "CurrencyCode": "USD", "Amount": 10 } } }, "condition": "new", "belongsToRequester": true } ], "NumberOfOfferListings": [ { "Count": 20, "condition": "new" } ], "TradeInValue": { "CurrencyCode": "USD", "Amount": 10 } }, "SalesRankings": [ { "ProductCategoryId": "325345", "Rank": 1 } ] } }, { "status": "Success", "ASIN": "B00551Q3CS", "Product": { "Identifiers": { "MarketplaceASIN": { "MarketplaceId": "ATVPDKIKX0DER", "ASIN": "B00551Q3CS" }, "SKUIdentifier": { "MarketplaceId": "", "SellerId": "", "SellerSKU": "" } }, "CompetitivePricing": { "CompetitivePrices": [ { "CompetitivePriceId": "45456452646", "Price": { "LandedPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 130 }, "Shipping": { "CurrencyCode": "USD", "Amount": 120 }, "Points": { "PointsNumber": 130, "PointsMonetaryValue": { "CurrencyCode": "USD", "Amount": 10 } } }, "condition": "new", "belongsToRequester": true } ], "NumberOfOfferListings": [ { "Count": 1, "condition": "new" } ], "TradeInValue": { "CurrencyCode": "string", "Amount": 0 } }, "SalesRankings": [ { "ProductCategoryId": "54564", "Rank": 1 } ] } } ] }

Request example using a SKU:

GET https://sellingpartnerapi-na.amazon.com/products/pricing/v0/competitivePrice ?MarketplaceId=ATVPDKIKX0DER &Skus=NABetaASINB00V5DG6IQ,NABetaASINB00551Q3CS &ItemType=Sku

Response example

{ "payload": [ { "status": "Success", "SellerSKU": "NABetaASINB00V5DG6IQ", "Product": { "Identifiers": { "MarketplaceASIN": { "MarketplaceId": "ATVPDKIKX0DER", "ASIN": "B00V5DG6IQ" }, "SKUIdentifier": { "MarketplaceId": "ATVPDKIKX0DER", "SellerId": "AXXXXXXXXXXXXX", "SellerSKU": "NABetaASINB00V5DG6IQ" } }, "CompetitivePricing": { "CompetitivePrices": [ { "CompetitivePriceId": "3454535", "Price": { "LandedPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 130 }, "Shipping": { "CurrencyCode": "USD", "Amount": 120 }, "Points": { "PointsNumber": 130, "PointsMonetaryValue": { "CurrencyCode": "USD", "Amount": 10 } } }, "condition": "new", "belongsToRequester": true } ], "NumberOfOfferListings": [ { "Count": 402, "condition": "new" } ], "TradeInValue": { "CurrencyCode": "USD", "Amount": 20 } }, "SalesRankings": [ { "ProductCategoryId": "676554", "Rank": 1 } ] } }, { "status": "Success", "SellerSKU": "NABetaASINB00551Q3CS", "Product": { "Identifiers": { "MarketplaceASIN": { "MarketplaceId": "ATVPDKIKX0DER", "ASIN": "B00551Q3CS" }, "SKUIdentifier": { "MarketplaceId": "ATVPDKIKX0DER", "SellerId": "AXXXXXXXXXXXXX", "SellerSKU": "NABetaASINB00551Q3CS" } }, "CompetitivePricing": { "CompetitivePrices": [ { "CompetitivePriceId": "4545645646", "Price": { "LandedPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 130 }, "Shipping": { "CurrencyCode": "USD", "Amount": 120 }, "Points": { "PointsNumber": 130, "PointsMonetaryValue": { "CurrencyCode": "USD", "Amount": 10 } } }, "condition": "new", "belongsToRequester": true } ], "NumberOfOfferListings": [ { "Count": 402, "condition": "new" } ], "TradeInValue": { "CurrencyCode": "USD", "Amount": 20 } }, "SalesRankings": [ { "ProductCategoryId": "35345", "Rank": 1 } ] } } ] }

Tutorial: Retrieve lowest priced offers for a single SKU listing

This tutorial shows you how to retrieve the lowest priced offers for a single SKU listing.

Prerequisites

To successfully complete this tutorial, you must have the following:

Step 1. Call getListingOffers

You can call the getListingOffers operation to get lowest pricing information based on a SKU. This operation accepts a SKU as a path parameter.

Path parameters

Name Description Schema
SellerSKU Identifies an item in the given marketplace. SellerSKU is qualified by the seller's SellerId, which is included with every operation that you submit. Type: string

Query parameters

Name Description Schema
MarketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned. Type: string
ItemCondition Filters the offer listings based on item condition.
Possible values: New, Used, Collectible, Refurbished, Club.
Type: enum (ItemCondition)
CustomerType Indicates whether to request pricing information from the point of view of consumer or business buyers. Default is Consumer. Type: enum (CustomerType)

Response

A successful response includes the following:

Name Description Schema
payload
optional
The payload for the getListingOffers and getItemOffers operations. GetOffersResult
errors
optional
One or more unexpected errors occurred during the operation. ErrorList

Request example

GET https://sellingpartnerapi-na.amazon.com/products/pricing/v0/listings/NABetaASINB00V5DG6IQ/offers ?MarketplaceId=ATVPDKIKX0DER &ItemCondition=New

Response example

{ "payload": { "SKU": "NABetaASINB00V5DG6IQ", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "NABetaASINB00V5DG6IQ" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "TotalOfferCount": 1 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10.00 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "SellerFeedbackRating": { "FeedbackCount": 0, "SellerPositiveFeedbackRating": 0.0 }, "ShipsFrom": { "State": "WA", "Country": "US" }, "SubCondition": "new", "IsFeaturedMerchant": false, "SellerId": "AXXXXXXXXXXXXX", "MyOffer": true, "IsFulfilledByAmazon": false } ], "MarketplaceID": "ATVPDKIKX0DER" } }

Tutorial: Retrieve lowest priced offers for an ASIN using the getItemOffers operation

This tutorial shows you how to retrieve the lowest priced offers for a single item based on ASIN. This is done by creating a new attribute called listingPrice in the getItemOffers response.

Prerequisites

To successfully complete this tutorial, you must have the following:

Steps

  • Step 1. Get the item offers with the necessary parameters.
  • Step 2. Confirm the response meets the following criteria:
    • The listingPrice field appears with the price and contains the same subattributes.
    • The quantity discount price does not contain LandedPrice and Shipping as subattributes.

Step 1. Get the item offers with the necessary parameters.

You can call the getItemOffers operation to get the lowest pricing information based on a ASIN. This operation accepts an ASIN as a path parameter.

Path parameters

Name Description Schema Required
Asin The Amazon Standard Identification Number (ASIN) of the item. Type: string Yes

Query parameters

Name Description Schema Required
MarketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned. Type: string Yes
ItemCondition Filters the offer listings to be considered based on item condition. Possible values: New, Used, Collectible, Refurbished, Club. Type: enum (ItemCondition) Yes
CustomerType Indicates whether to request Consumer or Business offers. Default is Consumer. Type: enum (CustomerType) Yes

Step 2. Confirm the response meets the following criteria:

  • The listingPrice field appears with the price and contains the same subattributes.
  • The quantity discount price does not contain LandedPrice and Shipping as subattributes.

Response

A successful response includes the following:

Name Description Schema
payload
optional
The payload for the getListingOffers and getItemOffers operations. GetOffersResult
errors
optional
One or more unexpected errors occurred during the operation. ErrorList

Request example

GET https://authoring.marketplaceapi-beta.amazonservices.com/products/pricing/v0/items/BT6SNNHWWQ/offers ?MarketplaceId=ATVPDKIKX0DER &ItemType=Asin &Asins=B099284SRR &ItemCondition=New &CustomerType=Business

Response example

{ "payload": { "ASIN": "BT6SNNHWWQ", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "BT6SNNHWWQ" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 8.50 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.50 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 } }, { "condition": "new", "fulfillmentChannel": "Merchant", "offerType": "B2B", "quantityTier": 10, "discountType": "QUANTITY_DISCOUNT", "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.33 } }, { "condition": "new", "fulfillmentChannel": "Merchant", "offerType": "B2B", "quantityTier": 20, "discountType": "QUANTITY_DISCOUNT", "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.29 } }, { "condition": "new", "fulfillmentChannel": "Merchant", "offerType": "B2B", "quantityTier": 30, "discountType": "QUANTITY_DISCOUNT", "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.25 } }, { "condition": "new", "fulfillmentChannel": "Merchant", "offerType": "B2B", "quantityTier": 50, "discountType": "QUANTITY_DISCOUNT", "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.16 } } ], "BuyBoxPrices": [ { "condition": "new", "offerType": "B2B", "quantityTier": 1, "LandedPrice": { "CurrencyCode": "USD", "Amount": 8.50 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.50 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 }, "sellerId": "A31M2ZO4G2R747" }, { "condition": "new", "offerType": "B2B", "quantityTier": 10, "discountType": "QUANTITY_DISCOUNT", "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.33 }, "sellerId": "A31M2ZO4G2R747" }, { "condition": "new", "offerType": "B2B", "quantityTier": 20, "discountType": "QUANTITY_DISCOUNT", "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.29 }, "sellerId": "A31M2ZO4G2R747" }, { "condition": "new", "offerType": "B2B", "quantityTier": 30, "discountType": "QUANTITY_DISCOUNT", "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.24 }, "sellerId": "A31M2ZO4G2R747" }, { "condition": "new", "offerType": "B2B", "quantityTier": 40, "discountType": "QUANTITY_DISCOUNT", "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.16 }, "sellerId": "A31M2ZO4G2R747" } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 2 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 2 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 11.00 }, "TotalOfferCount": 2 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 8.50 }, "quantityDiscountPrices": [ { "quantityTier": 10, "quantityDiscountType": "QUANTITY_DISCOUNT", "price": { "CurrencyCode": "USD", "Amount": 8.33 }, "listingPrice": { "CurrencyCode": "USD", "Amount": 8.33 } }, { "quantityTier": 20, "quantityDiscountType": "QUANTITY_DISCOUNT", "price": { "CurrencyCode": "USD", "Amount": 8.29 }, "listingPrice": { "CurrencyCode": "USD", "Amount": 8.29 } }, { "quantityTier": 30, "quantityDiscountType": "QUANTITY_DISCOUNT", "price": { "CurrencyCode": "USD", "Amount": 8.25 }, "listingPrice": { "CurrencyCode": "USD", "Amount": 8.25 } }, { "quantityTier": 40, "quantityDiscountType": "QUANTITY_DISCOUNT", "price": { "CurrencyCode": "USD", "Amount": 8.16 }, "listingPrice": { "CurrencyCode": "USD", "Amount": 8.16 } } ], "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "SellerFeedbackRating": { "FeedbackCount": 0, "SellerPositiveFeedbackRating": 0.0 }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A31M2ZO4G2R747", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0.00 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 9.99 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "SellerFeedbackRating": { "FeedbackCount": 0, "SellerPositiveFeedbackRating": 0.0 }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A31M2ZO4G2R747", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }

Tutorial: Retrieve lowest priced offers Information by SKU using a batch operation

This tutorial shows you how to retrieve information about the lowest priced offers by SKU using a batch operation.

Prerequisites

To successfully complete this tutorial, you must have the following:

Step 1. URL-encoding on SKU

The URL-encoding process ensures that all URLs are valid to send over HTTP. The data can be passed on HTTP headers or included in the query portion of URL. The invalid characters are replaced by a % followed by a hexadecimal value. If you do not URL-encode the SKU, you will receive a status code 400 in the API response with the error message Item is an invalid SKU for marketplace XXXXXXXXX.

Example: SKU VT-DEIT/57T1 should be URL-Encoded and passed as VT-DEIT%2F57T1.

Example Java code:

import java.net.URLEncoder; import java.nio.charset.StandardCharsets; import java.io.UnsupportedEncodingException*;* // Method to encode a SKU using `UTF-8` encoding scheme private static String encodeSKU(String sSKU) { try { return URLEncoder.encode(sSKU, StandardCharsets.UTF_8.toString()); } catch (UnsupportedEncodingException ex) { e*.*printStackTrace*();* } }

Error example when SKU is not URL-Encoded

In this request, the SKU is passed without URL-Encoding. Item\1 is used instead of Item%2F1:

POST https://sellingpartnerapi-na.amazon.com/batches/products/pricing/v0/listingOffers { "requests": [ { "uri": "/products/pricing/v0/listings/Item\1/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" } ] }

The API response received is 200 but the statusCode within the response for the specific SKU will be 400:

{ "responses": [ { "status": { "statusCode": 400, "reasonPhrase": "Bad Request" }, "body": { "errors": [ { "code": "InvalidInput", "message": "Item is an invalid SKU for marketplace ATVPDKIKX0DER", "details": "" } ] }, "headers": { "x-amzn-RequestId": "e3452685-0450-4a18-b706-431a59d36818", "Date": "Fri, 22 Jul 2022 20:46:46 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "Item", "CustomerType": "Consumer", "ItemCondition": "New" } } ] }

Step 2. Call the getListingOffersBatch operation

The getListingOffersBatch operation allows you to fetch the lowest priced offers for a batch of listings by SKU. This operation allows up to 20 SKU requests in a single batch. Call the getListingOffersBatch operation, passing the following parameters:

Body parameters

Name Description Schema
requests List of getListingOffers batched requests to run Type: <ListingOffersRequest> array

Response

A successful response includes the following:

Name Description Schema
responses A list of getListingOffers batched responses. Type: <ListingOffersResponse> array

Request example

POST https://sellingpartnerapi-na.amazon.com/batches/products/pricing/v0/listingOffers { "requests": [ { "uri": "/products/pricing/v0/listings/Item%2F1/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-57T2/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-57T3/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-57T4/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-57T5/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-57T6/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-57T7/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-57T8/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-57T9/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5710/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5711/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5712/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5713/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5714/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5715/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5716/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5717/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5718/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5719/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/listings/VT-DEIT-5720/offers", "method": "GET", "ItemCondition": "New", "MarketplaceId": "ATVPDKIKX0DER", "CustomerType": "Consumer" } ] }

Response example

{ "responses": [ { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "Item/1", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "Item/1" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "Item%2F1", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-57T2", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-57T2" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-57T2", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-57T3", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-57T3" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-57T3", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-57T4", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-57T4" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-57T4", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-57T5", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-57T5" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-57T5", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-57T6", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-57T6" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-57T6", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-57T7", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-57T7" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-57T7", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-57T8", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-57T8" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-57T8", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-57T9", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-57T9" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-57T9", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5710", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5710" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5710", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5711", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5711" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5711", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5712", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5712" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5712", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5713", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5713" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5713", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5714", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5714" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5714", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5715", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5715" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5715", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5716", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5716" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5716", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5717", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5717" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5717", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5718", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5718" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5718", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 200, "reasonPhrase": "OK" }, "body": { "payload": { "SKU": "VT-DEIT-5719", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "SellerSKU": "VT-DEIT-5719" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant" } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "toy_display_on_website", "Rank": 5538 }, { "ProductCategoryId": "14194715011", "Rank": 9 }, { "ProductCategoryId": "251975011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A5LI4TEX5CN80", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "MyOffer": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "A2SNBFWOFW4SWG", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AH2OYH1RAT8PM", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "MyOffer": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "x-amzn-RequestId": "0ced5397-5457-4094-9a05-c65be31e9a34", "Date": "Thu, 21 Jul 2022 19:29:28 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5719", "CustomerType": "Consumer", "ItemCondition": "New" } }, { "status": { "statusCode": 400, "reasonPhrase": "Bad Request" }, "body": { "errors": [ { "code": "InvalidInput", "message": "VT-DEIT-5719 is an invalid SKU for marketplace ATVPDKIKX0DER", "details": "" } ] }, "headers": { "x-amzn-RequestId": "f74c5ff6-6384-40eb-8704-595b3f52f8dd", "Date": "Thu, 21 Jul 2022 19:54:34 GMT" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "SellerSKU": "VT-DEIT-5719", "CustomerType": "Consumer", "ItemCondition": "New" } } ] }

Tutorial: Retrieve lowest priced offers Information by ASIN using a batch operation

This tutorial shows you how to retrieve information about the lowest priced offers by ASIN using a batch operation.

Prerequisites

To successfully complete this tutorial, you must have the following:

Step 1. Call the getItemsOffersBatch operation

The getItemOffersBatch operation allows you to fetch the lowest priced offers for a batch of items by ASIN. This operation allows up to 20 ASIN requests in a single batch. Call the getItemOffersBatch operation, passing the following parameters:

Body parameters

Name Description Schema
requests List of ItemOffersRequest batched requests to run Type: <ItemOffersRequest> array

Response

A successful response includes the following:

Name Description Schema
responses A list of getItemOffers batched responses. Type: <ItemOffersResponse> array

Request example

POST https://sellingpartnerapi-na.amazon.com/batches/products/pricing/v0/itemOffers { "requests": [ { "uri": "/products/pricing/v0/items/B000P6Q7MY/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B001Q3KU9Q/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B007Z07UK6/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B000OQA3N4/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B07PTMKYS7/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B001PYUTII/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B00505DW2I/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B00CGZQU42/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B01LY2ZYRF/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" }, { "uri": "/products/pricing/v0/items/B00KFRNZY6/offers", "method": "GET", "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "CustomerType": "Consumer" } ] }

Response example

{ "responses": [ { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B000P6Q7MY", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B000P6Q7MY" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 21 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 21 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 21 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 21 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 1 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 1 } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 33099 }, { "ProductCategoryId": "166064011", "Rank": 790 }, { "ProductCategoryId": "251920011", "Rank": 947 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 26 }, "TotalOfferCount": 1 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 21 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "4025", "content-type": "application/json", "x-amds-request-id": "56be04b2-b10c-4603-9154-fb626f3d3d72", "x-amds-timestamp": "3121-10-13T03:01:12.124Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B000P6Q7MY", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B001Q3KU9Q", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B001Q3KU9Q" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Amazon", "LandedPrice": { "CurrencyCode": "USD", "Amount": 24.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 24.99 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 20.49 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 10.49 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 24.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 24.99 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Amazon", "OfferCount": 1 }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "OfferCount": 1 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Amazon", "OfferCount": 1 }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "OfferCount": 0 } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 6993 }, { "ProductCategoryId": "251947011", "Rank": 27 }, { "ProductCategoryId": "23627232011", "Rank": 39 }, { "ProductCategoryId": "251913011", "Rank": 81 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 27.99 }, "TotalOfferCount": 2 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 24.99 }, "ShippingTime": { "maximumHours": 0, "minimumHours": 0, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": true, "IsNationalPrime": true }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": true } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "5102", "content-type": "application/json", "x-amds-request-id": "c22c1aed-c826-4f92-a20f-363187719d30", "x-amds-timestamp": "3121-10-13T03:15:02.727Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B001Q3KU9Q", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B007Z07UK6", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B007Z07UK6" }, "Summary": { "LowestPrices": [ { "condition": "used", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 18 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 11 }, "Shipping": { "CurrencyCode": "USD", "Amount": 7 } }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } }, { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 1 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 1 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 5.01 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "used", "fulfillmentChannel": "Merchant", "OfferCount": 2 }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "OfferCount": 1 }, { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 11 } ], "BuyBoxEligibleOffers": [ { "condition": "used", "fulfillmentChannel": "Merchant", "OfferCount": 2 }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "OfferCount": 0 }, { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 2 } ], "SalesRankings": [ { "ProductCategoryId": "fashion_display_on_website", "Rank": 65511 }, { "ProductCategoryId": "3421050011", "Rank": 61 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 10 }, "TotalOfferCount": 14 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 1 }, "ShippingTime": { "maximumHours": 720, "minimumHours": 504, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 3.5 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 5 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 5 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": true, "IsNationalPrime": true }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 5.5 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 5.01 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 12 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 20 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 50 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": true, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 100 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "15578", "content-type": "application/json", "x-amds-request-id": "5cd19473-d938-44ab-8983-e0d4ada92704", "x-amds-timestamp": "3121-10-13T03:26:26.957Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B007Z07UK6", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B000OQA3N4", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B000OQA3N4" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 0 } ], "SalesRankings": [ { "ProductCategoryId": "sports_display_on_website", "Rank": 212424 }, { "ProductCategoryId": "3395921", "Rank": 235 }, { "ProductCategoryId": "19574752011", "Rank": 1698 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 25 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 3.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 9.99 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 20 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "5109", "content-type": "application/json", "x-amds-request-id": "06d8af8f-a481-4d3d-bb24-159ecc9d4d5f", "x-amds-timestamp": "3121-10-13T03:37:20.955Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B000OQA3N4", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B07PTMKYS7", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B07PTMKYS7" }, "Summary": { "LowestPrices": [ { "condition": "collectible", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 200 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 200 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } }, { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 12 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 12 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "NumberOfOffers": [ { "condition": "collectible", "fulfillmentChannel": "Merchant", "OfferCount": 1 }, { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 2 } ], "BuyBoxEligibleOffers": [ { "condition": "collectible", "fulfillmentChannel": "Merchant", "OfferCount": 0 }, { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 0 } ], "SalesRankings": [ { "ProductCategoryId": "video_games_display_on_website", "Rank": 3251 }, { "ProductCategoryId": "19497044011", "Rank": 49 }, { "ProductCategoryId": "14670126011", "Rank": 73 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 399 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 12 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 20 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "5094", "content-type": "application/json", "x-amds-request-id": "55a6a1fa-3c3d-4bf6-8955-168d314df574", "x-amds-timestamp": "3121-10-13T03:47:37.813Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B07PTMKYS7", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B001PYUTII", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B001PYUTII" }, "Summary": { "LowestPrices": [ { "condition": "used", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 1 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 1 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } }, { "condition": "new", "fulfillmentChannel": "Amazon", "LandedPrice": { "CurrencyCode": "USD", "Amount": 17.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 17.99 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 20 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 20 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } }, { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 9 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 9 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "NumberOfOffers": [ { "condition": "used", "fulfillmentChannel": "Merchant", "OfferCount": 4270 }, { "condition": "new", "fulfillmentChannel": "Amazon", "OfferCount": 1 }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "OfferCount": 1 }, { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 12 } ], "BuyBoxEligibleOffers": [ { "condition": "used", "fulfillmentChannel": "Merchant", "OfferCount": 8 }, { "condition": "new", "fulfillmentChannel": "Amazon", "OfferCount": 1 }, { "condition": "collectible", "fulfillmentChannel": "Merchant", "OfferCount": 0 }, { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 2 } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 34033 }, { "ProductCategoryId": "196604011", "Rank": 85 }, { "ProductCategoryId": "251910011", "Rank": 14740 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 17.99 }, "TotalOfferCount": 4284 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 9 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 12 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 5 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 17.99 }, "ShippingTime": { "maximumHours": 0, "minimumHours": 0, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": true, "IsNationalPrime": true }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": true }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 23 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 23 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 30 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 30 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 50 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 1400 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "18563", "content-type": "application/json", "x-amds-request-id": "2b403065-b462-4ed9-8f87-514f955e13a2", "x-amds-timestamp": "3121-10-13T03:57:50.393Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B001PYUTII", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B00505DW2I", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B00505DW2I" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 14.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 3 } ], "SalesRankings": [ { "ProductCategoryId": "toy_display_on_website", "Rank": 5043 }, { "ProductCategoryId": "251975011", "Rank": 12 }, { "ProductCategoryId": "14194715011", "Rank": 12 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 36 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 4.99 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 10 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 15 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 33 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "5983", "content-type": "application/json", "x-amds-request-id": "8568e96c-072e-4766-8da7-697468276b56", "x-amds-timestamp": "3121-10-13T04:11:40.083Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B00505DW2I", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B00CGZQU42", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B00CGZQU42" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Amazon", "LandedPrice": { "CurrencyCode": "USD", "Amount": 100 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 100 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } }, { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 50 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 50 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 50 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 50 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Amazon", "OfferCount": 1 }, { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 2 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Amazon", "OfferCount": 1 }, { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 1 } ], "SalesRankings": [ { "ProductCategoryId": "fashion_display_on_website", "Rank": 1143278 }, { "ProductCategoryId": "1045012", "Rank": 2310 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 18.99 }, "TotalOfferCount": 3 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 50 }, "ShippingTime": { "maximumHours": 48, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": false, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 50 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": false }, { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 100 }, "ShippingTime": { "maximumHours": 0, "minimumHours": 0, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": true, "IsNationalPrime": true }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": false, "IsFulfilledByAmazon": true } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "6811", "content-type": "application/json", "x-amds-request-id": "80383759-d127-4e01-882d-0d485c0f1789", "x-amds-timestamp": "3121-10-13T04:21:36.874Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B00CGZQU42", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B01LY2ZYRF", "status": "Success", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B01LY2ZYRF" }, "Summary": { "LowestPrices": [ { "condition": "new", "fulfillmentChannel": "Merchant", "LandedPrice": { "CurrencyCode": "USD", "Amount": 22 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 22 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "BuyBoxPrices": [ { "condition": "new", "LandedPrice": { "CurrencyCode": "USD", "Amount": 22 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 22 }, "Shipping": { "CurrencyCode": "USD", "Amount": 0 } } ], "NumberOfOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 1 } ], "BuyBoxEligibleOffers": [ { "condition": "new", "fulfillmentChannel": "Merchant", "OfferCount": 1 } ], "ListPrice": { "CurrencyCode": "USD", "Amount": 59.5 }, "TotalOfferCount": 1 }, "Offers": [ { "Shipping": { "CurrencyCode": "USD", "Amount": 0 }, "ListingPrice": { "CurrencyCode": "USD", "Amount": 22 }, "ShippingTime": { "maximumHours": 24, "minimumHours": 24, "availabilityType": "NOW" }, "ShipsFrom": { "Country": "US" }, "PrimeInformation": { "IsPrime": false, "IsNationalPrime": false }, "SubCondition": "new", "SellerId": "AXXXXXXXXXXXXX", "IsFeaturedMerchant": true, "IsBuyBoxWinner": true, "IsFulfilledByAmazon": false } ], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "3662", "content-type": "application/json", "x-amds-request-id": "a8528d10-c217-4a72-a60f-7eebcdd77131", "x-amds-timestamp": "3121-10-13T04:31:38.685Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B01LY2ZYRF", "CustomerType": "Consumer", "ItemCondition": "New" }, { "status": 200, "statusDescription": "OK", "body": { "payload": { "ASIN": "B00KFRNZY6", "status": "NoBuyableOffers", "ItemCondition": "New", "Identifier": { "MarketplaceId": "ATVPDKIKX0DER", "ItemCondition": "New", "ASIN": "B00KFRNZY6" }, "Summary": { "TotalOfferCount": 0 }, "Offers": [], "marketplaceId": "ATVPDKIKX0DER" } }, "headers": { "content-length": "556", "content-type": "application/json", "x-amds-request-id": "f469a75d-41e8-4f7a-8f9b-e400c600f3d7", "x-amds-timestamp": "3121-10-13T04:42:11.466Z" }, "request": { "MarketplaceId": "ATVPDKIKX0DER", "Asin": "B00KFRNZY6", "CustomerType": "Consumer", "ItemCondition": "New" } ] }

Did this page help you?