Guía de casos de uso de la API de precios de productos v0

Cómo se debe utilizar la API de precios de productos.

Versión de API: v0

¿Qué es la API de precios de productos?

La API del colaborador comercial para la determinación de precios de productos (API de precios de productos) obtiene mediante programación los precios de los productos y la información sobre ofertas de productos del sitio web de Amazon.

Terminología

  • SKU: unidad de mantenimiento del stock que identifica un artículo en el catálogo de Amazon.
  • ASIN: número de identificación normalizado de Amazon de un artículo.
  • Codificación de URL: la codificación de URL convierte los caracteres en un formato que puede transmitirse por Internet.

Tutorial: Obtener información sobre precios de listings de ofertas de vendedores

En este tutorial se muestra cómo obtener la información de precios de los listings de las ofertas de un vendedor en función de su SKU o ASIN.

Requisitos

Para completar con éxito este tutorial necesitarás lo siguiente:

Paso 1. Llamar a la operación getPricing

Puedes llamar a la operación getPricing para obtener información de precios basada en una lista de SKU o ASIN. Esta operación acepta una lista de hasta 20 SKU o ASIN como parámetro de consulta.

Parámetros de consulta

Nombre Descripción Schema
MarketplaceId Un identificador de sitio web. Especifica el sitio web para el que se obtienen los precios. Tipo: cadena
Asins Una lista de hasta 20 números de identificación normalizados de Amazon (ASIN) utilizados para identificar artículos en un sitio web determinado.
Número máx.: 20
Tipo: matriz
Skus Una lista de hasta 20 valores de SKU del vendedor utilizados para identificar artículos en un sitio web determinado.
Número máx.: 20
Tipo: matriz
ItemType Indica si se utilizan los valores ASIN o los valores de SKU del vendedor para identificar los artículos. Si especificas Asin, la información de la respuesta dependerá de la lista de ASIN que proporciones en el parámetro Asins. Si especificas Sku, la información de la respuesta dependerá de la lista de SKU que proporciones en el parámetro Skus.
Posibles valores: Asin, Sku.
Tipo: enum (ItemType)
CustomerType Indica si la información sobre precios debe solicitarse desde el punto de vista del consumidor o del comprador empresarial. El valor predeterminado es Consumer. Tipo: enum (CustomerType)
OfferType Indica si la información sobre precios debe solicitarse para las ofertas B2C (empresa a consumidor) o B2B (empresa a empresa) del vendedor. El valor predeterminado es B2C. Tipo: enum (OfferType)

Respuesta

Una respuesta correcta incluye lo siguiente:

Nombre Descripción Schema
payload
optional
La carga útil de las operaciones getPricing y getCompetitivePricing. PriceList
errors
optional
Se han producido uno o varios errores inesperados durante la operación. ErrorList

Solicitud de ejemplo utilizando un ASIN:

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

Ejemplo de respuesta

{ "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" } ] } } ] }

Solicitud de ejemplo utilizando un SKU:

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

Ejemplo de respuesta

{ "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: Obtener información sobre precios competitivos de listings de ofertas de vendedores

En este tutorial se muestra cómo obtener la información de precios competitivos de los listings de las ofertas de un vendedor en función de su SKU o ASIN.

Requisitos

Para completar con éxito este tutorial necesitarás lo siguiente:

Paso 1. Llamar a la operación getCompetitivePricing

Puedes llamar a la operación getCompetitivePricing para obtener información de precios competitivos basada en una lista de SKU o ASIN. Esta operación acepta una lista de hasta 20 SKU o ASIN como parámetro de consulta.

Parámetros de consulta:

Nombre Descripción Schema
MarketplaceId Un identificador de sitio web. Especifica el sitio web para el que se obtienen los precios. Tipo: cadena
Asins Una lista de hasta 20 números de identificación normalizados de Amazon (ASIN) utilizados para identificar artículos en un sitio web determinado.
Número máx.: 20
Tipo: matriz
Skus Una lista de hasta 20 valores de SKU del vendedor utilizados para identificar artículos en un sitio web determinado.
Número máx.: 20
Tipo: matriz
ItemType Indica si se utilizan los valores ASIN o los valores de SKU del vendedor para identificar los artículos. Si especificas Asin, la información de la respuesta dependerá de la lista de ASIN que proporciones en el parámetro Asins. Si especificas Sku, la información de la respuesta dependerá de la lista de SKU que proporciones en el parámetro Skus.
Posibles valores: Asin, Sku.
Tipo: enum (ItemType)
CustomerType Indica si la información sobre precios debe solicitarse desde el punto de vista del consumidor o del comprador empresarial. El valor predeterminado es Consumer. Tipo: enum (CustomerType)

Respuesta

Una respuesta correcta incluye lo siguiente:

Nombre Descripción Schema
payload
optional
La carga útil de las operaciones getPricing y getCompetitivePricing. PriceList
errors
optional
Se han producido uno o varios errores inesperados durante la operación. ErrorList

Solicitud de ejemplo utilizando un ASIN:

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

Ejemplo de respuesta

{ "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 } ] } } ] }

Solicitud de ejemplo utilizando un SKU:

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

Ejemplo de respuesta

{ "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: Obtener las ofertas de precio más bajo para un único listing de SKU

En este tutorial se muestra cómo obtener las ofertas con precios más bajos para un único listing de SKU.

Requisitos

Para completar con éxito este tutorial necesitarás lo siguiente:

Paso 1. Llamar a la operación getListingOffers

Puedes llamar a la operación getListingOffers para obtener información sobre los precios más bajos en función de un SKU. Esta operación acepta un SKU como parámetro de ruta.

Parámetros de ruta

Nombre Descripción Schema
SellerSKU Identifica un artículo en un sitio web determinado. El SellerSKU se califica con el SellerId del vendedor, que se incluye en cada transacción que envía. Tipo: cadena

Parámetros de consulta

Nombre Descripción Schema
MarketplaceId Un identificador de sitio web. Especifica el sitio web para el que se obtienen los precios. Tipo: cadena
ItemCondition Filtra los listings de ofertas según el estado del artículo.
Valores posibles: New, Used, Collectible, Refurbished, Club.
Tipo: enum (ItemCondition)
CustomerType Indica si la información sobre precios debe solicitarse desde el punto de vista del consumidor o del comprador empresarial. El valor predeterminado es Consumer. Tipo: enum (CustomerType)

Respuesta

Una respuesta correcta incluye lo siguiente:

Nombre Descripción Schema
payload
optional
La carga útil de las operaciones getListingOffers y getItemOffers. GetOffersResult
errors
optional
Se han producido uno o varios errores inesperados durante la operación. ErrorList

Ejemplo de solicitud

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

Ejemplo de respuesta

{ "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: Consulta las ofertas con el precio más bajo de un ASIN mediante el getItemOffers operación

Este tutorial te muestra cómo recuperar las ofertas con el precio más bajo de un solo artículo según el ASIN. Esto se hace creando un nuevo atributo llamado listingPrice en el getItemOffers respuesta.

Requisitos

Para completar con éxito este tutorial necesitarás lo siguiente:

Pasos

  • Paso 1. Obtenga las ofertas de artículos con los parámetros necesarios.
  • Paso 2. Confirme que la respuesta cumple los siguientes criterios:
    • El listingPrice el campo aparece con price y contiene los mismos subatributos.
    • El precio de descuento por cantidad no contiene LandedPrice y Shipping como subatributos.

Paso 1. Obtenga las ofertas de artículos con los parámetros necesarios.

Puedes llamar a la operación getItemOffers para obtener información sobre los precios más bajos en función de un ASIN. Esta operación acepta un ASIN como parámetro de ruta.

Parámetros de ruta

Nombre Descripción Schema Obligatorio
Asin El número de identificación normalizado de Amazon (ASIN) del artículo. Tipo: cadena

Parámetros de consulta

Nombre Descripción Schema Obligatorio
MarketplaceId Un identificador de sitio web. Especifica el sitio web para el que se obtienen los precios. Tipo: cadena
ItemCondition Filtra los listings de ofertas según el estado del artículo. Valores posibles: New, Used, Collectible, Refurbished, Club. Tipo: enum (ItemCondition)
CustomerType Indica si se deben solicitar ofertas para consumidores o empresas. El valor predeterminado es Consumer. Tipo: enum (CustomerType)

Paso 2. Confirme que la respuesta cumple los siguientes criterios:

  • El listingPrice el campo aparece con price y contiene los mismos subatributos.
  • El precio de descuento por cantidad no contiene LandedPrice y Shipping como subatributos.

Respuesta

Una respuesta correcta incluye lo siguiente:

Nombre Descripción Schema
payload
optional
La carga útil de las operaciones getListingOffers y getItemOffers. GetOffersResult
errors
optional
Se han producido uno o varios errores inesperados durante la operación. ErrorList

Ejemplo de solicitud

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

Ejemplo de respuesta

{ "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: Obtener información sobre las ofertas de precio más bajo por SKU utilizando una operación por lotes

En este tutorial se muestra cómo obtener información sobre las ofertas de precio más bajo por SKU utilizando una operación por lotes.

Requisitos

Para completar con éxito este tutorial necesitarás lo siguiente:

Paso 1. Codificación de URL en el SKU

El proceso de codificación de URL garantiza que todas las URL sean válidas para su envío a través de HTTP. Los datos pueden transmitirse en encabezados HTTP o incluirse en la parte de consulta de la URL. Los caracteres no válidos se sustituyen por un % seguido de un valor hexadecimal. Si no codificas el SKU en la URL, recibirás un código de estado 400 en la respuesta de la API con el mensaje de error Item is an invalid SKU for marketplace XXXXXXXXX.

Ejemplo: el SKU VT-DEIT/57T1 debe codificarse en URL e introducirse como VT-DEIT%2F57T1.

Ejemplo de código Java:

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*();* } }

Ejemplo de error cuando el SKU no está codificado en URL

En esta solicitud, el SKU se introduce sin codificación de URL. Se utiliza Item\1 en lugar de 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" } ] }

La respuesta recibida de la API es 200, pero el statusCode dentro de la respuesta para el SKU específico será 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" } } ] }

Paso 2. Llamar a la operación getListingOffersBatch

La operación getListingOffersBatch permite obtener las ofertas de precio más bajo de un lote de listings por SKU. Esta operación permite solicitar hasta 20 SKU en un mismo lote. Llama a la operación getListingOffersBatch, introduciendo los parámetros siguientes:

Parámetros de texto

Nombre Descripción Schema
requests Lista de solicitudes por lotes degetListingOffers que ejecutar Tipo: matriz <ListingOffersRequest>

Respuesta

Una respuesta correcta incluye lo siguiente:

Nombre Descripción Schema
responses Una lista de respuestas por lotes de getListingOffers. Tipo: matriz <ListingOffersResponse>

Ejemplo de solicitud

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" } ] }

Ejemplo de respuesta

{ "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: Obtener información sobre las ofertas de precio más bajo por ASIN utilizando una operación por lotes

En este tutorial se muestra cómo obtener información sobre las ofertas de precio más bajo por ASIN utilizando una operación por lotes.

Requisitos

Para completar con éxito este tutorial necesitarás lo siguiente:

Paso 1. Llamar a la operación getItemsOffersBatch

La operación getItemOffersBatch permite obtener las ofertas de precio más bajo de un lote de artículos por ASIN. Esta operación permite solicitar hasta 20 ASIN en un mismo lote. Llama a la operación getItemOffersBatch, introduciendo los parámetros siguientes:

Parámetros de texto

Nombre Descripción Schema
requests Lista de solicitudes por lotes deItemOffersRequest que ejecutar Tipo: matriz <ItemOffersRequest>

Respuesta

Una respuesta correcta incluye lo siguiente:

Nombre Descripción Schema
responses Una lista de respuestas por lotes de getItemOffers. Tipo: matriz <ItemOffersResponse>

Ejemplo de solicitud

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" } ] }

Ejemplo de respuesta

{ "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" } ] }

¿Te ha ayudado esta página?