diff --git a/README.md b/README.md index 224b21a..6652f20 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,34 @@ Throttling value must be `greater than 0` or `False` to disable it. This value t amazon = AmazonAPI(KEY, SECRET, TAG, COUNTRY, throttling=0.5) # Max one request every two seconds amazon = AmazonAPI(KEY, SECRET, TAG, COUNTRY, throttling=False) # Unlimited requests per second +**API support** +We provide a serializer for django rest framework, which speeds up your api +implementation. + + from amazon.paapi import AmazonAPI + from amazon.serializers import AmazonProductSerializer + from rest_framework import serializers + amazon = AmazonAPI(KEY, SECRET, TAG, COUNTRY) + + product = amazon.get_product('B01N5IB20Q') + serialized_product = AmazonProductSerializer(product) + serialized.data # this prints serialized product + +if you like to serialize a list of products: + + products = amazon.search_products(item_count=40, keywords='Harry') + serialized_products = AmazonProductSerializer(products, many=True) + serialized_products.data + +For more Information how to work with serializers see the documentation of +[django rest framework](https://www.django-rest-framework.org/api-guide/serializers/) + + Changelog ------------- + Version 3.2.1 (unreleased) + - Added serializer class for django rest framework + - Added serialized data for your convenience Version 3.2.0 - Added new method for getting browse nodes information. - Removed the 10 pages limit on search_products and get_variations methods. diff --git a/amazon/serializer/dango_rest_framework.py b/amazon/serializer/dango_rest_framework.py new file mode 100644 index 0000000..8988c15 --- /dev/null +++ b/amazon/serializer/dango_rest_framework.py @@ -0,0 +1,156 @@ +from rest_framework import serializers + + +class _AmazonValueUnitSerializer(serializers.Serializer): + value = serializers.FloatField() + unit = serializers.CharField() + + +class _AmazonDimensionsSerializer(serializers.Serializer): + height = _AmazonValueUnitSerializer() + length = _AmazonValueUnitSerializer() + width = _AmazonValueUnitSerializer() + + +class _AmazonProductSerializer(serializers.Serializer): + features = serializers.ListField() + languages = serializers.ListField() + formats = serializers.ListField() + pages_count = serializers.ListField() + color = serializers.CharField() + unit_count = serializers.IntegerField() + size = serializers.CharField() + dimensions = _AmazonDimensionsSerializer() + weight = _AmazonValueUnitSerializer() + + +class _AmazonContributorsSerializer(serializers.Serializer): + name = serializers.CharField() + role = serializers.CharField() + + +class _AmazonExternalIdsSerializer(serializers.Serializer): + ean = serializers.ListField() + isbn = serializers.ListField() + upc = serializers.ListField() + + +class _AmazonInfoSerializer(serializers.Serializer): + contributors = _AmazonContributorsSerializer(many=True) + manufacturer = serializers.CharField() + brand = serializers.CharField() + model = serializers.CharField() + part_number = serializers.CharField() + product_group = serializers.CharField() + binding = serializers.CharField() + is_adult = serializers.BooleanField() + audience_rating = serializers.CharField() + edition = serializers.CharField() + warranty = serializers.CharField() + publication_date = serializers.CharField() + release_date = serializers.CharField() + external_ids = _AmazonExternalIdsSerializer() + + +class _AmazonImageVariantsSerializer(serializers.Serializer): + small = serializers.ListField() + medium = serializers.ListField() + large = serializers.ListField() + + +class _AmazonImagesSerializer(serializers.Serializer): + small = serializers.CharField() + medium = serializers.CharField() + large = serializers.CharField() + cropped = _AmazonImageVariantsSerializer() + variants = _AmazonImageVariantsSerializer() + + +class _AmazonTradeInSerializer(serializers.Serializer): + elegible = serializers.BooleanField() + price = serializers.FloatField() + currency = serializers.CharField() + + +class _AmazonSavingsSerializer(serializers.Serializer): + value = serializers.FloatField() + currency = serializers.CharField() + per_unit = serializers.FloatField() + display = serializers.CharField() + percentage = serializers.FloatField() + + +class _AmazonPriceSerializer(serializers.Serializer): + value = serializers.FloatField() + currency = serializers.CharField() + per_unit = serializers.FloatField() + display = serializers.CharField() + savings = _AmazonSavingsSerializer() + + +class _AmazonPvpSerializer(serializers.Serializer): + value = serializers.FloatField() + currency = serializers.CharField() + per_unit = serializers.FloatField() + display = serializers.CharField() + + +class _AmazonAvailabilitySerializer(serializers.Serializer): + max_order_quantity = serializers.IntegerField() + min_order_quantity = serializers.IntegerField() + type = serializers.CharField() + message = serializers.CharField() + + +class _AmazonConditionSerializer(serializers.Serializer): + condition = serializers.CharField() + condition_display = serializers.CharField() + sub_condition = serializers.CharField() + sub_condition_display = serializers.CharField() + + +class _AmazonMerchantSerializer(serializers.Serializer): + default_shipping_country = serializers.CharField() + merchant_id = serializers.CharField() + name = serializers.CharField() + + +class _AmazonOtherSerializer(serializers.Serializer): + buybox_winner = serializers.BooleanField() + loyalty_points = serializers.IntegerField() + amazon_fulfilled = serializers.BooleanField() + free_shipping_eligible = serializers.BooleanField() + prime_eligible = serializers.BooleanField() + prime_exclusive = serializers.BooleanField() + prime_pantry = serializers.BooleanField() + violates_map = serializers.BooleanField() + offer_id = serializers.CharField() + + +class _AmazonPricesSerializer(serializers.Serializer): + price = _AmazonPriceSerializer() + pvp = _AmazonPvpSerializer() + availability = _AmazonAvailabilitySerializer() + condition = _AmazonConditionSerializer() + merchant = _AmazonMerchantSerializer() + other = _AmazonOtherSerializer() + + +class _AmazonOffersSummarySerializer(serializers.Serializer): + highest_price = _AmazonPvpSerializer() + lowest_price = _AmazonPvpSerializer() + condition = _AmazonConditionSerializer() + offer_count = serializers.IntegerField() + + +class AmazonProductSerializer(serializers.Serializer): + asin = serializers.CharField(max_length=10) + parent_asin = serializers.CharField(max_length=10) + title = serializers.CharField() + url = serializers.CharField() + product = _AmazonProductSerializer() + info = _AmazonInfoSerializer() + images = _AmazonImagesSerializer() + trade_in = _AmazonTradeInSerializer() + prices = _AmazonPricesSerializer() + offers_summary = _AmazonOffersSummarySerializer(many=True) diff --git a/tests/data/dump.json b/tests/data/dump.json new file mode 100644 index 0000000..cb87398 --- /dev/null +++ b/tests/data/dump.json @@ -0,0 +1,7823 @@ +[ + { + "asin": "B00JGV1JW2", + "parent_asin": null, + "title": "Harry Potter und der Stein der Weisen [dt./OV]", + "url": "https://www.amazon.de/dp/B00JGV1JW2?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "John Cleese", + "role": "Darsteller" + }, + { + "name": "Robbie Coltrane", + "role": "Darsteller" + }, + { + "name": "Chris Columbus", + "role": "Regisseur" + }, + { + "name": "Steve Kloves", + "role": "Autor" + }, + { + "name": "J.K. Rowling", + "role": "Autor" + }, + { + "name": "David Heyman", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 6 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51+FnV4rG+L._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51+FnV4rG+L._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51+FnV4rG+L.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51+FnV4rG+L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51+FnV4rG+L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51+FnV4rG+L._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6X5A51dcSIvY8IB4scUQ2%2FrCl0V2iedrXE%2FnG8J8ozbGd8MFK5YnXN3klEyIpymgRZfUaTpTv%2FqBl%2Bk%2F4vA6svV91uwgNJxFSsMtUhY7AxrzOISI6Y0BU457wJgmCXog71gOduFgkv5e" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "lowest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00EVAU29E", + "parent_asin": null, + "title": "Harry Potter und der Feuerkelch [dt./OV]", + "url": "https://www.amazon.de/dp/B00EVAU29E?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Ralph Fiennes", + "role": "Darsteller" + }, + { + "name": "Michael Gambon", + "role": "Darsteller" + }, + { + "name": "Brendan Gleeson", + "role": "Darsteller" + }, + { + "name": "Jason Isaacs", + "role": "Darsteller" + }, + { + "name": "Gary Oldman", + "role": "Darsteller" + }, + { + "name": "Miranda Richardson", + "role": "Darsteller" + }, + { + "name": "Alan Rickman", + "role": "Darsteller" + }, + { + "name": "Maggie Smith", + "role": "Darsteller" + }, + { + "name": "Timothy Spall", + "role": "Darsteller" + }, + { + "name": "David Bradley", + "role": "Darsteller" + }, + { + "name": "Jarvis Cocker", + "role": "Darsteller" + }, + { + "name": "Warwick Da", + "role": "Darsteller" + }, + { + "name": "Afshan Azad", + "role": "Darsteller" + }, + { + "name": "T", + "role": "Darsteller" + }, + { + "name": "Tiana Benjamin", + "role": "Darsteller" + }, + { + "name": "Mike Newell", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51fKIYYi6jL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51fKIYYi6jL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51fKIYYi6jL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51fKIYYi6jL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51fKIYYi6jL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51fKIYYi6jL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6UHPT7YerIEdlAYD3mRLofojY5YuRPkBeacwqGwUXoMTHtDp3tEdGOWnptp6%2Bb%2Fx1SjHcEbvft5Jbsm3zdarRNI5jNgSQH9ManwNAQOfdni4Nm1RTVSQIP5wK47mms6pcwBj9NlfZDlX" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "lowest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00FYULGTK", + "parent_asin": null, + "title": "Harry Potter und der Gefangene von Askaban [dt./OV]", + "url": "https://www.amazon.de/dp/B00FYULGTK?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Robbie Coltrane", + "role": "Darsteller" + }, + { + "name": "Michael Gambon", + "role": "Darsteller" + }, + { + "name": "Richard Griffiths", + "role": "Darsteller" + }, + { + "name": "Gary Oldman", + "role": "Darsteller" + }, + { + "name": "Alan Rickman", + "role": "Darsteller" + }, + { + "name": "Alfonso Cuarón", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51l06eGxU7L._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51l06eGxU7L._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51l06eGxU7L.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51l06eGxU7L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51l06eGxU7L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51l06eGxU7L._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6Xbl47Vb5DBmuLpN%2F7UHV2dfFB7z2MzLxci8VFQX5zhclXLaXTDr0WoYBWKgVp9dhcMY335PNnyxOOk1rIzEa3thwJNyivozylO9ogVxdgQH8I4%2BJUHag1Hd%2FV2uCxde4072rT0vW8Rm" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "lowest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00IKEOUHM", + "parent_asin": null, + "title": "Harry Potter und die Heiligtümer des Todes - Teil 1 [dt./OV]", + "url": "https://www.amazon.de/dp/B00IKEOUHM?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Helena Bonham Carter", + "role": "Darsteller" + }, + { + "name": "Robbie Coltrane", + "role": "Darsteller" + }, + { + "name": "David Yates", + "role": "Regisseur" + }, + { + "name": "J.K. Rowling", + "role": "Autor" + }, + { + "name": "Steve Kloves", + "role": "Autor" + }, + { + "name": "David Heyman", + "role": "Produzent" + }, + { + "name": "David Barron", + "role": "Produzent" + }, + { + "name": "J.K. Rowling", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51O+e8wf5kL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51O+e8wf5kL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51O+e8wf5kL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51O+e8wf5kL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51O+e8wf5kL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51O+e8wf5kL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6bziDDy0xax0G7LoTE%2FWmFPY%2FucSU5FNeW6bkZr4Oe0b%2FVJYkoPF6CICGuBcLetuK6ydZCkA%2BE8KwoHeb3DFDuyXFOpiXnn83HO1Ejbnbpyc3ulAxfCgt%2B7aWMhpGrMmRDjKgz2mprTt" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "lowest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00IKBTWCS", + "parent_asin": null, + "title": "Harry Potter und die Heiligtümer des Todes - Teil 2 [dt./OV]", + "url": "https://www.amazon.de/dp/B00IKBTWCS?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Helena Bonham Carter", + "role": "Darsteller" + }, + { + "name": "Robbie Coltrane", + "role": "Darsteller" + }, + { + "name": "David Yates", + "role": "Regisseur" + }, + { + "name": "David Heyman", + "role": "Produzent" + }, + { + "name": "David Barron", + "role": "Produzent" + }, + { + "name": "J.K. Rowling", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/513cq-mGjvL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/513cq-mGjvL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/513cq-mGjvL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/513cq-mGjvL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/513cq-mGjvL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/513cq-mGjvL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6aoyBd8D%2FIx4O7wj7Dgqiq0MewLDnoTehH3cXVVg7NlSY00ZZRl4Teo4TUzzlEw3Msz6qY8rFTNXKM1pd7f1m%2B3f5Y5FJ5vY53NRMHPryJ8jaiTQawThbppU2oKPsJf1Vf8rAE1iyKCc" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "lowest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00FZ29U04", + "parent_asin": null, + "title": "Harry Potter und der Halbblutprinz [dt./OV]", + "url": "https://www.amazon.de/dp/B00FZ29U04?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Helena Bonham Carter", + "role": "Darsteller" + }, + { + "name": "Jim Broadbent", + "role": "Darsteller" + }, + { + "name": "Tom Felton", + "role": "Darsteller" + }, + { + "name": "Helen McCrory", + "role": "Darsteller" + }, + { + "name": "David Thewlis", + "role": "Darsteller" + }, + { + "name": "David Yates", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/519SA+3e7CL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/519SA+3e7CL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/519SA+3e7CL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/519SA+3e7CL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/519SA+3e7CL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/519SA+3e7CL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6SohSiGWLJOZUTLyjKCqPb0m7MKaPWz46nsh%2F6pDb3ORNTKtVYwOnT%2BtrkkmjMC3UoRKG%2FmDlN5KJYQpSOj1UA6beLOKeI7CCuFHbPHHA36EvJNKhsgG5Z9LJt3i0fBdqRXY%2FYKhNXwj" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "lowest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00RYENTOY", + "parent_asin": null, + "title": "Harry Potter und der Orden des Phönix [dt./OV]", + "url": "https://www.amazon.de/dp/B00RYENTOY?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Helena Bonham Carter", + "role": "Darsteller" + }, + { + "name": "David Bradley", + "role": "Darsteller" + }, + { + "name": "Robbie Coltrane", + "role": "Darsteller" + }, + { + "name": "Warwick Davis", + "role": "Darsteller" + }, + { + "name": "Ralph Fiennes", + "role": "Darsteller" + }, + { + "name": "Michael Gambon", + "role": "Darsteller" + }, + { + "name": "Brendan Gleeson", + "role": "Darsteller" + }, + { + "name": "Richard Griffiths", + "role": "Darsteller" + }, + { + "name": "Robert Hardy", + "role": "Darsteller" + }, + { + "name": "George Harris", + "role": "Darsteller" + }, + { + "name": "Kathryn Hunter", + "role": "Darsteller" + }, + { + "name": "Jason Isaacs", + "role": "Darsteller" + }, + { + "name": "Evanna Lynch", + "role": "Darsteller" + }, + { + "name": "Gary Oldman", + "role": "Darsteller" + }, + { + "name": "Alan Rickman", + "role": "Darsteller" + }, + { + "name": "Fiona Shaw", + "role": "Darsteller" + }, + { + "name": "Maggie Smith", + "role": "Darsteller" + }, + { + "name": "Imelda Staunton", + "role": "Darsteller" + }, + { + "name": "Natalia Tena", + "role": "Darsteller" + }, + { + "name": "David Thewlis", + "role": "Darsteller" + }, + { + "name": "Emma Thompson", + "role": "Darsteller" + }, + { + "name": "Julie Walters", + "role": "Darsteller" + }, + { + "name": "Mark Williams", + "role": "Darsteller" + }, + { + "name": "David Yates", + "role": "Regisseur" + }, + { + "name": "Michael Goldenberg", + "role": "Autor" + }, + { + "name": "David Heyman", + "role": "Produzent" + }, + { + "name": "David Barron", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51ihrPF9t2L._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51ihrPF9t2L._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51ihrPF9t2L.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51ihrPF9t2L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51ihrPF9t2L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51ihrPF9t2L._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6Y%2BCzSRP%2FB67FRcNvqggJ6AA%2BhUQsz1pb33vD8o6X%2Bxk%2FM4%2BCkC3J%2FEe1hKEJrSfHDVrdgvPkqBYx9Ra5Khkw9k4wE6ChROnOwviCu3GM2Hfos5mwZ%2BgD4W%2FvfVWvbsWjJ7ftPYUsLhm" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "lowest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00HX2J48C", + "parent_asin": null, + "title": "Harry Potter und die Kammer des Schreckens", + "url": "https://www.amazon.de/dp/B00HX2J48C?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Deutsch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe (Harry Potter)", + "role": "Darsteller" + }, + { + "name": "Rupert Grint (Ron Weasley)", + "role": "Darsteller" + }, + { + "name": "Emma Watson (Hermine Granger)", + "role": "Darsteller" + }, + { + "name": "Tom Felton (Draco Malfoy)", + "role": "Darsteller" + }, + { + "name": "Bonnie Wright (Ginny Weasley)", + "role": "Darsteller" + }, + { + "name": "Chris Columbus", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51z6rcxEoSL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51z6rcxEoSL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51z6rcxEoSL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51z6rcxEoSL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51z6rcxEoSL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51z6rcxEoSL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6dov2Jywb%2FsNON1WXeNF%2FI4gdSD8wcvfimyPPBZ98Wc%2BKuzaxGJzhkUzLJkEApR2cnbbp6ApORtD4UcF%2B5BjSDIi9iRfNcXm3WNeFIMlP80RlM5yK0gO0zwNP2J2kHV9UannUy5vCNjQ" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "lowest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00ILWH73C", + "parent_asin": null, + "title": "Der Hobbit: Eine unerwartete Reise (Extended Edition) [dt./OV]", + "url": "https://www.amazon.de/dp/B00ILWH73C?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Untertitelt", + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Ian Mckellen", + "role": "Darsteller" + }, + { + "name": "Martin Freeman", + "role": "Darsteller" + }, + { + "name": "Richard Armitage", + "role": "Darsteller" + }, + { + "name": "Cate Blanchett", + "role": "Darsteller" + }, + { + "name": "Ian Holm", + "role": "Darsteller" + }, + { + "name": "Peter Jackson", + "role": "Regisseur" + }, + { + "name": "Philippa Boyens", + "role": "Autor" + }, + { + "name": "Peter Jackson", + "role": "Autor" + }, + { + "name": "Fran Walsh", + "role": "Autor" + }, + { + "name": "Guillermo Del Toro", + "role": "Autor" + }, + { + "name": "Peter Jackson", + "role": "Produzent" + }, + { + "name": "Carolynne Cunningham", + "role": "Produzent" + }, + { + "name": "Zane Weiner", + "role": "Produzent" + }, + { + "name": "Fran Walsh", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51LTyXtL-rL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51LTyXtL-rL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51LTyXtL-rL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51LTyXtL-rL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51LTyXtL-rL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51LTyXtL-rL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMllHPFJLBLy6fp%2BeSf94kP%2Bhrnr6Ou7GEpZrgQC1OQcpdPxmk9ncKh8vESj6Zak4XT1N1LqMGG6jSb%2BD1P5LarnxWv0HwwpvsCeNYP%2F0zyqN4uCtTHnTNsQYCM1EMXiIGVxXwTLMExVTsZdbOeQSrjI" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €" + }, + "lowest_price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B0192CTMVY", + "parent_asin": null, + "title": "Harry Potter und der Stein der Weisen", + "url": "https://www.amazon.de/dp/B0192CTMVY?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Veröffentlicht" + ], + "formats": [ + "Kindle eBook" + ], + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Rowling, J.K.", + "role": "Autor" + }, + { + "name": "Fritz, Klaus", + "role": "Übersetzer" + } + ], + "manufacturer": "Pottermore Publishing", + "brand": null, + "model": null, + "part_number": null, + "product_group": "Digital Ebook Purchas", + "binding": "Kindle Ausgabe", + "is_adult": null, + "audience_rating": null, + "edition": null, + "warranty": null, + "publication_date": "2015-12-08T00:00:00.000Z", + "release_date": "2015-12-08T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51gETDWOHnL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51gETDWOHnL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51gETDWOHnL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51gETDWOHnL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51gETDWOHnL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51gETDWOHnL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 8.99, + "currency": "EUR", + "per_unit": null, + "display": "8,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Jetzt als Download verfügbar." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "DE", + "merchant_id": "A2X9BIRDIKC20I", + "name": "Amazon Media EU S.à r.l." + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "8oGIh%2FQafMmx%2B1djcfUKzwsyBc0ThWyYhUGZpv5wk4AsVZgqhlUHNPKizmDg1dBVe56XIBXKEqA%2Fg%2BPgRrNtnUN2H%2FQYajEkWUHd9jvC3aXJZE9Jd4dEbJ%2BPqa61J66Dny1RX8duCHSRDzqlOMfA8m7niVZP%2FAomhk3h8mh%2Bn6F3%2F%2BNQqJRP%2BA%3D%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 8.99, + "currency": "EUR", + "per_unit": null, + "display": "8,99 €" + }, + "lowest_price": { + "value": 8.99, + "currency": "EUR", + "per_unit": null, + "display": "8,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "3551557403", + "parent_asin": null, + "title": "Harry Potter: Band 1-7 im Schuber – mit exklusivem Extra! (Harry Potter)", + "url": "https://www.amazon.de/dp/3551557403?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": [ + "offiziell lizenzierte Harry Potter Sammlerausgabe", + "Band 1 - 7 in neuer Auflage, Lieferung in prachtvollem Schuber", + "inklusive Schmuckschachtel mit Harry, Ron und Hermine als kleine Standfiguren", + "7 gebundene Ausgaben mit insgesamt 4192 Seiten", + "Autorin: J.K. Rowling, Übersetzer: Klaus Fritz" + ], + "languages": [ + "Deutsch Veröffentlicht", + "Deutsch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": "Grey", + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": 13.03147, + "unit": "Zoll" + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": 6.49605, + "unit": "Zoll" + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Rowling, J.K.", + "role": "Autor" + }, + { + "name": "Fritz, Klaus", + "role": "Übersetzer" + } + ], + "manufacturer": "Carlsen", + "brand": "Carlsen", + "model": null, + "part_number": "56248016", + "product_group": "Book", + "binding": "Gebundene Ausgabe", + "is_adult": null, + "audience_rating": null, + "edition": "3.", + "warranty": null, + "publication_date": "2019-10-05T00:00:01Z", + "release_date": "2019-10-05T00:00:01Z", + "external_ids": { + "ean": [ + "9783551557407" + ], + "isbn": [ + "3551557403" + ], + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51Qk7iioFyL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51Qk7iioFyL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51Qk7iioFyL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51Qk7iioFyL._AC75_.jpg", + "https://m.media-amazon.com/images/I/5157bQhVXRL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51axFDCORkL._AC75_.jpg", + "https://m.media-amazon.com/images/I/518lVjw0m3L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51Qk7iioFyL._AC160_.jpg", + "https://m.media-amazon.com/images/I/5157bQhVXRL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51axFDCORkL._AC160_.jpg", + "https://m.media-amazon.com/images/I/518lVjw0m3L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51Qk7iioFyL._AC_.jpg", + "https://m.media-amazon.com/images/I/5157bQhVXRL._AC_.jpg", + "https://m.media-amazon.com/images/I/51axFDCORkL._AC_.jpg", + "https://m.media-amazon.com/images/I/518lVjw0m3L._AC_.jpg" + ] + }, + "variants": { + "small": [ + "https://m.media-amazon.com/images/I/5157bQhVXRL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51axFDCORkL._SL75_.jpg", + "https://m.media-amazon.com/images/I/518lVjw0m3L._SL75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/5157bQhVXRL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51axFDCORkL._SL160_.jpg", + "https://m.media-amazon.com/images/I/518lVjw0m3L._SL160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/5157bQhVXRL.jpg", + "https://m.media-amazon.com/images/I/51axFDCORkL.jpg", + "https://m.media-amazon.com/images/I/518lVjw0m3L.jpg" + ] + } + }, + "trade_in": null, + "prices": { + "price": { + "value": 149.0, + "currency": "EUR", + "per_unit": null, + "display": "149,00 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": null, + "merchant_id": "A3JWKAKR8XB7XF", + "name": "Amazon.de" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": true, + "free_shipping_eligible": true, + "prime_eligible": true, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "mZYvE1sWc1DcvOHVyPBzbStIdfjT%2FkgapSTYEIYXxkSjjiwEXS9Mo0fVYp03CkYoDPapBuSH%2FLQWLJvNtdP%2BMh0IrxPSAfaQKUkjVOsYElE%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 149.0, + "currency": "EUR", + "per_unit": null, + "display": "149,00 €" + }, + "lowest_price": { + "value": 149.0, + "currency": "EUR", + "per_unit": null, + "display": "149,00 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 33 + }, + { + "highest_price": { + "value": 149.0, + "currency": "EUR", + "per_unit": null, + "display": "149,00 €" + }, + "lowest_price": { + "value": 145.99, + "currency": "EUR", + "per_unit": null, + "display": "145,99 €" + }, + "condition": { + "condition": "Used", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 5 + } + ] + }, + { + "asin": "B00FYWPEF0", + "parent_asin": null, + "title": "Mamma Mia! - Der Film [dt./OV]", + "url": "https://www.amazon.de/dp/B00FYWPEF0?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Meryl Streep", + "role": "Darsteller" + }, + { + "name": "Pierce Brosnan", + "role": "Darsteller" + }, + { + "name": "Colin Firth", + "role": "Darsteller" + }, + { + "name": "Stellan SkarsgåRd", + "role": "Darsteller" + }, + { + "name": "Dominic Cooper", + "role": "Darsteller" + }, + { + "name": "Phyllida Lloyd", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ohne Altersbeschränkung", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51BwpGvC15L._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51BwpGvC15L._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51BwpGvC15L.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51BwpGvC15L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51BwpGvC15L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51BwpGvC15L._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "mZYvE1sWc1A6BotCpF2t0qEzfSkp%2Fg6n3EYGxJOsDLsu4O8uIrlMrixoxv10i30jKj1%2FXxZSX3V8koujLMNOtxSIFS1B49DpUs9%2FP%2FwUkBbl5tLaUJFLAvrpHV9jJrGXMSHuNhs9Kk6xvaC4T9M%2Bdl7lSzC8tRCy" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €" + }, + "lowest_price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B01LXWRKQQ", + "parent_asin": null, + "title": "Voll erschrocken", + "url": "https://www.amazon.de/dp/B01LXWRKQQ?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Englisch Originalsprache", + "Englisch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": null, + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ohne Altersbeschränkung", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2016-09-30T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51cHWjkRuqL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51cHWjkRuqL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51cHWjkRuqL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51cHWjkRuqL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51cHWjkRuqL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51cHWjkRuqL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": null, + "type": null, + "message": null + }, + "condition": null, + "merchant": { + "default_shipping_country": null, + "merchant_id": null, + "name": null + }, + "other": { + "buybox_winner": null, + "loyalty_points": null, + "amazon_fulfilled": null, + "free_shipping_eligible": null, + "prime_eligible": null, + "prime_exclusive": null, + "prime_pantry": null, + "violates_map": null, + "offer_id": null + } + }, + "offers_summary": null + }, + { + "asin": "1408856778", + "parent_asin": null, + "title": "Harry Potter-Kindersammlung", + "url": "https://www.amazon.de/dp/1408856778?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Englisch Veröffentlicht", + "Englisch Originalsprache", + "Englisch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": 7, + "size": null, + "dimensions": { + "height": { + "value": 8.0, + "unit": "Zoll" + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": 5.25, + "unit": "Zoll" + } + }, + "weight": { + "value": 6.5697754076, + "unit": "Pfund" + } + }, + "info": { + "contributors": [ + { + "name": "Rowling, J.K.", + "role": "Autor" + } + ], + "manufacturer": "Bloomsbury Children's Books", + "brand": "Bloomsbury UK", + "model": "2724309564565", + "part_number": "9781408856772", + "product_group": "Book", + "binding": "Taschenbuch", + "is_adult": false, + "audience_rating": null, + "edition": "01", + "warranty": null, + "publication_date": "2014-10-09T00:00:01Z", + "release_date": "2014-10-09T00:00:01Z", + "external_ids": { + "ean": [ + "9781408856772", + "8601410696429" + ], + "isbn": [ + "9781408856772", + "1408856778" + ], + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51grtVWQzIL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51grtVWQzIL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51grtVWQzIL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51grtVWQzIL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51dleZa49gL._AC75_.jpg", + "https://m.media-amazon.com/images/I/31SqzHwI6RL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51WTDu2LwBL._AC75_.jpg", + "https://m.media-amazon.com/images/I/516ijdZ09FL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51NcwglC+AL._AC75_.jpg", + "https://m.media-amazon.com/images/I/515N-LSlVvL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51P30zhn6kL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51VVY-LGHJL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51hmr83+JaL._AC75_.jpg", + "https://m.media-amazon.com/images/I/518UaanaWIL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51ikTBucs+L._AC75_.jpg", + "https://m.media-amazon.com/images/I/51kOgDiT4gL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51SIomTD83L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51grtVWQzIL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51dleZa49gL._AC160_.jpg", + "https://m.media-amazon.com/images/I/31SqzHwI6RL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51WTDu2LwBL._AC160_.jpg", + "https://m.media-amazon.com/images/I/516ijdZ09FL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51NcwglC+AL._AC160_.jpg", + "https://m.media-amazon.com/images/I/515N-LSlVvL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51P30zhn6kL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51VVY-LGHJL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51hmr83+JaL._AC160_.jpg", + "https://m.media-amazon.com/images/I/518UaanaWIL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51ikTBucs+L._AC160_.jpg", + "https://m.media-amazon.com/images/I/51kOgDiT4gL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51SIomTD83L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51grtVWQzIL._AC_.jpg", + "https://m.media-amazon.com/images/I/51dleZa49gL._AC_.jpg", + "https://m.media-amazon.com/images/I/31SqzHwI6RL._AC_.jpg", + "https://m.media-amazon.com/images/I/51WTDu2LwBL._AC_.jpg", + "https://m.media-amazon.com/images/I/516ijdZ09FL._AC_.jpg", + "https://m.media-amazon.com/images/I/51NcwglC+AL._AC_.jpg", + "https://m.media-amazon.com/images/I/515N-LSlVvL._AC_.jpg", + "https://m.media-amazon.com/images/I/51P30zhn6kL._AC_.jpg", + "https://m.media-amazon.com/images/I/51VVY-LGHJL._AC_.jpg", + "https://m.media-amazon.com/images/I/51hmr83+JaL._AC_.jpg", + "https://m.media-amazon.com/images/I/518UaanaWIL._AC_.jpg", + "https://m.media-amazon.com/images/I/51ikTBucs+L._AC_.jpg", + "https://m.media-amazon.com/images/I/51kOgDiT4gL._AC_.jpg", + "https://m.media-amazon.com/images/I/51SIomTD83L._AC_.jpg" + ] + }, + "variants": { + "small": [ + "https://m.media-amazon.com/images/I/51dleZa49gL._SL75_.jpg", + "https://m.media-amazon.com/images/I/31SqzHwI6RL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51WTDu2LwBL._SL75_.jpg", + "https://m.media-amazon.com/images/I/516ijdZ09FL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51NcwglC+AL._SL75_.jpg", + "https://m.media-amazon.com/images/I/515N-LSlVvL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51P30zhn6kL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51VVY-LGHJL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51hmr83+JaL._SL75_.jpg", + "https://m.media-amazon.com/images/I/518UaanaWIL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51ikTBucs+L._SL75_.jpg", + "https://m.media-amazon.com/images/I/51kOgDiT4gL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51SIomTD83L._SL75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51dleZa49gL._SL160_.jpg", + "https://m.media-amazon.com/images/I/31SqzHwI6RL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51WTDu2LwBL._SL160_.jpg", + "https://m.media-amazon.com/images/I/516ijdZ09FL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51NcwglC+AL._SL160_.jpg", + "https://m.media-amazon.com/images/I/515N-LSlVvL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51P30zhn6kL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51VVY-LGHJL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51hmr83+JaL._SL160_.jpg", + "https://m.media-amazon.com/images/I/518UaanaWIL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51ikTBucs+L._SL160_.jpg", + "https://m.media-amazon.com/images/I/51kOgDiT4gL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51SIomTD83L._SL160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51dleZa49gL.jpg", + "https://m.media-amazon.com/images/I/31SqzHwI6RL.jpg", + "https://m.media-amazon.com/images/I/51WTDu2LwBL.jpg", + "https://m.media-amazon.com/images/I/516ijdZ09FL.jpg", + "https://m.media-amazon.com/images/I/51NcwglC+AL.jpg", + "https://m.media-amazon.com/images/I/515N-LSlVvL.jpg", + "https://m.media-amazon.com/images/I/51P30zhn6kL.jpg", + "https://m.media-amazon.com/images/I/51VVY-LGHJL.jpg", + "https://m.media-amazon.com/images/I/51hmr83+JaL.jpg", + "https://m.media-amazon.com/images/I/518UaanaWIL.jpg", + "https://m.media-amazon.com/images/I/51ikTBucs+L.jpg", + "https://m.media-amazon.com/images/I/51kOgDiT4gL.jpg", + "https://m.media-amazon.com/images/I/51SIomTD83L.jpg" + ] + } + }, + "trade_in": null, + "prices": { + "price": { + "value": 49.99, + "currency": "EUR", + "per_unit": null, + "display": "49,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": null, + "merchant_id": "A3JWKAKR8XB7XF", + "name": "Amazon.de" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": true, + "free_shipping_eligible": true, + "prime_eligible": true, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "mZYvE1sWc1Atm0OGHE7f3YRKucCljOTNFVw5d2RPiDm3VYwzyiTjtj%2BvZjbBSfbkepUrZPhw5T%2FXLcPyftYzHACncwM8%2BOJVxLvuvW4gA7g%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 84.81, + "currency": "EUR", + "per_unit": null, + "display": "84,81 €" + }, + "lowest_price": { + "value": 44.99, + "currency": "EUR", + "per_unit": null, + "display": "44,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 25 + }, + { + "highest_price": { + "value": 77.5, + "currency": "EUR", + "per_unit": null, + "display": "77,50 €" + }, + "lowest_price": { + "value": 64.64, + "currency": "EUR", + "per_unit": null, + "display": "64,64 €" + }, + "condition": { + "condition": "Used", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 3 + } + ] + }, + { + "asin": "B0797VTF8K", + "parent_asin": null, + "title": "Emily", + "url": "https://www.amazon.de/dp/B0797VTF8K?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Originalsprache", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Oded Ruskin", + "role": "Regisseur" + }, + { + "name": "Oded Ruskin", + "role": "Produzent" + }, + { + "name": "Stana Katic", + "role": "Produzent" + }, + { + "name": "Matt Cirulnick", + "role": "Produzent" + }, + { + "name": "Julie Glucksman", + "role": "Produzent" + }, + { + "name": "Maria Feldman", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 16 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": null, + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51qVb9UdXXL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51qVb9UdXXL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51qVb9UdXXL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51qVb9UdXXL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51qVb9UdXXL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51qVb9UdXXL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": null, + "type": null, + "message": null + }, + "condition": null, + "merchant": { + "default_shipping_country": null, + "merchant_id": null, + "name": null + }, + "other": { + "buybox_winner": null, + "loyalty_points": null, + "amazon_fulfilled": null, + "free_shipping_eligible": null, + "prime_eligible": null, + "prime_exclusive": null, + "prime_pantry": null, + "violates_map": null, + "offer_id": null + } + }, + "offers_summary": null + }, + { + "asin": "B01GE5LY3G", + "parent_asin": null, + "title": "Harry Potter Bertie Bott´s Beans, Beutel, 1er Pack (1 x 54 g)", + "url": "https://www.amazon.de/dp/B01GE5LY3G?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": [ + "Wer dachte sich nicht einmal wie toll es doch wäre die Bohnen aus Harry Potter auch einmal zu probieren.", + "Das ist der große Spaß für die ganze Familie! Geschmacksabenteuer mit spaßgarantie!", + "Banane (Banana), schwarzer Pfeffer (Black Pepper), Blaubeere (Blueberry), popel (booger), Zuckerwatte (Candy floss), Kirsche (Cherry), Zimt (cinnamon).", + "Erde (dirt), Regenwurm (earthworm), Ohrenschmalz (earwax), Gras (Grass), Grüner Apfel (Green Apple), gerösteter Marshmallow (toasted Marshmallow).", + "Fauliges Ei (Rotten egg), Wurst (sausage), Zitrone (Lemon), Seife (soap), Tutti Frutti, Erbrochenes (vom IT), Wassermelone (Watermelon)." + ], + "languages": [ + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": 1, + "size": null, + "dimensions": { + "height": { + "value": 5.6299212541, + "unit": "Zoll" + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": 3.93700787, + "unit": "Zoll" + } + }, + "weight": { + "value": 0.00011904962148, + "unit": "Pfund" + } + }, + "info": { + "contributors": null, + "manufacturer": "Jelly Belly Candy Company", + "brand": "Jelly Belly", + "model": "42500-DE", + "part_number": "42500-DE", + "product_group": "Grocery", + "binding": "Lebensmittel & Getränke", + "is_adult": null, + "audience_rating": null, + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2020-01-28T00:00:01Z", + "external_ids": { + "ean": [ + "0071570000615", + "0071570001094" + ], + "isbn": null, + "upc": [ + "071570001094", + "071570000615" + ] + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51zYvyQ58yL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51zYvyQ58yL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51zYvyQ58yL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51zYvyQ58yL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51zYvyQ58yL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51zYvyQ58yL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.29, + "currency": "EUR", + "per_unit": 6.09, + "display": "3,29 € (6,09 € / 100 g)", + "savings": { + "value": 1.7, + "currency": "EUR", + "per_unit": 3.15, + "display": "1,70 € (34%)", + "percentage": 34.0 + } + }, + "pvp": { + "value": 4.99, + "currency": "EUR", + "per_unit": 9.24, + "display": "4,99 € (9,24 € / 100 g)" + }, + "availability": { + "max_order_quantity": 6, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": null, + "merchant_id": "A3JWKAKR8XB7XF", + "name": "Amazon.de" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": true, + "free_shipping_eligible": true, + "prime_eligible": true, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "mZYvE1sWc1CFgok3CiS5agJlLvDyesfMyp%2F8abK4tKZmHz47Gxf3Q1REfSEqZzY%2Fv%2B8MZmoSX3yupkbotDDXRlKrNyHTsLYDeMoUICoxqtE%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 5.99, + "currency": "EUR", + "per_unit": 11.09, + "display": "5,99 € (11,09 € / 100 g)" + }, + "lowest_price": { + "value": 3.29, + "currency": "EUR", + "per_unit": 6.09, + "display": "3,29 € (6,09 € / 100 g)" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 11 + } + ] + }, + { + "asin": "B00K7AYK1I", + "parent_asin": null, + "title": "Harry Potter and the Chamber of Secrets [OV]", + "url": "https://www.amazon.de/dp/B00K7AYK1I?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Kenneth Branagh", + "role": "Darsteller" + }, + { + "name": "John Cleese", + "role": "Darsteller" + }, + { + "name": "Robbie Coltrane", + "role": "Darsteller" + }, + { + "name": "Warwick Davis", + "role": "Darsteller" + }, + { + "name": "Richard Griffiths", + "role": "Darsteller" + }, + { + "name": "Richard Harris", + "role": "Darsteller" + }, + { + "name": "Jason Isaacs", + "role": "Darsteller" + }, + { + "name": "Alan Rickman", + "role": "Darsteller" + }, + { + "name": "Fiona Shaw", + "role": "Darsteller" + }, + { + "name": "Dame Maggie Smith", + "role": "Darsteller" + }, + { + "name": "Julie Walters", + "role": "Darsteller" + }, + { + "name": "Chris Columbus", + "role": "Regisseur" + }, + { + "name": "Steve Kloves", + "role": "Autor" + }, + { + "name": "David Heyman", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 16 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51yHuCwfRHL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51yHuCwfRHL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51yHuCwfRHL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51yHuCwfRHL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51yHuCwfRHL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51yHuCwfRHL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "mZYvE1sWc1A6BotCpF2t0kq5VGIEF4UQE5C9YOMTb9imY8JcFejoYeu5F3pZmjdVtDlyIpnATZixhQKaolC1v2u5EFcCpwiz%2BwicHnarlLAVwWGTHAV50pow68j7b%2FYFNthyOThGgc5KgxyVvWhhFIEgtDsiFOzT" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "lowest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B07NNQTKJT", + "parent_asin": null, + "title": "Phantastische Tierwesen: Grindelwalds Verbrechen [dt./OV]", + "url": "https://www.amazon.de/dp/B07NNQTKJT?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Eddie Redmayne", + "role": "Darsteller" + }, + { + "name": "Katherine Waterston", + "role": "Darsteller" + }, + { + "name": "Dan Fogler", + "role": "Darsteller" + }, + { + "name": "Alison Sudol", + "role": "Darsteller" + }, + { + "name": "Ezra Miller", + "role": "Darsteller" + }, + { + "name": "David Yates", + "role": "Regisseur" + }, + { + "name": "J.K. Rowling", + "role": "Autor" + }, + { + "name": "David Heyman", + "role": "Produzent" + }, + { + "name": "J.K. Rowling", + "role": "Produzent" + }, + { + "name": "Steve Kloves", + "role": "Produzent" + }, + { + "name": "Lionel Wigram", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2019-03-29T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51mOpsDmzGL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51mOpsDmzGL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51mOpsDmzGL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51mOpsDmzGL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51mOpsDmzGL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51mOpsDmzGL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 14.99, + "currency": "EUR", + "per_unit": null, + "display": "14,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "mZYvE1sWc1DPxwYHgwjGW%2Fr8vaDwAQCUr5J94WD7UBP1jUZj55QpZduBHl780rfjZOVywFogTNxMuA0zxAgJEhZLUoF2YYHyah2gvRjBxSdmWWsEJas%2F41x0R9yzLfR9u632O%2Bz3eBuEn9hT6AyidFaebBiR4KHB" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 14.99, + "currency": "EUR", + "per_unit": null, + "display": "14,99 €" + }, + "lowest_price": { + "value": 14.99, + "currency": "EUR", + "per_unit": null, + "display": "14,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B01N3XBNI1", + "parent_asin": null, + "title": "Phantastische Tierwesen und wo sie zu finden sind [dt./OV]", + "url": "https://www.amazon.de/dp/B01N3XBNI1?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Eddie Redmayne", + "role": "Darsteller" + }, + { + "name": "Katherine Waterston", + "role": "Darsteller" + }, + { + "name": "Dan Fogler", + "role": "Darsteller" + }, + { + "name": "Alison Sudol", + "role": "Darsteller" + }, + { + "name": "Ezra Miller", + "role": "Darsteller" + }, + { + "name": "David Yates", + "role": "Regisseur" + }, + { + "name": "J.K. Rowling", + "role": "Autor" + }, + { + "name": "David Heyman", + "role": "Produzent" + }, + { + "name": "J.K. Rowling", + "role": "Produzent" + }, + { + "name": "Steve Kloves", + "role": "Produzent" + }, + { + "name": "Lionel Wigram", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 6 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2016-11-17T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/513lBiNHJlL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/513lBiNHJlL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/513lBiNHJlL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/513lBiNHJlL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/513lBiNHJlL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/513lBiNHJlL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "mZYvE1sWc1CFgok3CiS5aiLu%2BKmHwKMXrj85V8afgPnX6uja8SM0z%2BMlJhrYeAIrbbtk18M97KtK9DMpL%2FcrBxe0gTiBZG6kZIeOdNJuM7IJfltIWuX5GyJecJPT7Zcy6Q5vkYodovm9%2BQwAGyOjeJurTrlhsWpf" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "lowest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B078K3YS79", + "parent_asin": null, + "title": "Clip: Zeichnung Harry Potter", + "url": "https://www.amazon.de/dp/B078K3YS79?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Englisch Untertitelt", + "Deutsch Gesprochen" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Jasmina Susak", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ohne Altersbeschränkung", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2017-12-21T19:51:53.881Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51rspkkcrpL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51rspkkcrpL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51rspkkcrpL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51rspkkcrpL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51rspkkcrpL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51rspkkcrpL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 11.99, + "currency": "EUR", + "per_unit": null, + "display": "11,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "mZYvE1sWc1DPxwYHgwjGW7pciB4wCNzUMlQxQpA9XzB872nuRZ47LWc5QRJTZJnE%2F1QnDDrYBCa7MWlVKyNuDvDlBXlokmaUoxP1Ly5WpGKKSv3ciYK4O%2FXlFero1%2BxXyapxvnUQFsY7wRRLDemp5Vqj4JQoVssq" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 11.99, + "currency": "EUR", + "per_unit": null, + "display": "11,99 €" + }, + "lowest_price": { + "value": 11.99, + "currency": "EUR", + "per_unit": null, + "display": "11,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00EVZNIBI", + "parent_asin": null, + "title": "Lügen", + "url": "https://www.amazon.de/dp/B00EVZNIBI?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Adam Davidson", + "role": "Regisseur" + }, + { + "name": "Ellen Pompeo", + "role": "Guest Actor" + }, + { + "name": "Patrick Dempsey", + "role": "Guest Actor" + }, + { + "name": "Katherine Heigl", + "role": "Guest Actor" + }, + { + "name": "Justin Chambers", + "role": "Guest Actor" + }, + { + "name": "T.R. Knight", + "role": "Guest Actor" + }, + { + "name": "Chandra Wilson", + "role": "Guest Actor" + }, + { + "name": "James Pickens Jr.", + "role": "Guest Actor" + }, + { + "name": "Sandra Oh", + "role": "Guest Actor" + }, + { + "name": "Isaiah Washington", + "role": "Guest Actor" + }, + { + "name": "Kate Walsh", + "role": "Guest Actor" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 16 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/41utoMPMYAL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/41utoMPMYAL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/41utoMPMYAL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/41utoMPMYAL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/41utoMPMYAL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/41utoMPMYAL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 2.49, + "currency": "EUR", + "per_unit": null, + "display": "2,49 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrRyW9Hb32NBMKl786Ir7ioKImD8NVKSaPlaIyRJhaR%2FZ2UoWjclGPDQ24eDKBo7gzTms6oas%2FnbJ2EXU4PkG0AGEIgH0WMvzHFRtUugWEj7ls91PQVNNh0FZ9QpPiySIiivfjqvF0tvyqPU9EM1laLK" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 2.49, + "currency": "EUR", + "per_unit": null, + "display": "2,49 €" + }, + "lowest_price": { + "value": 2.49, + "currency": "EUR", + "per_unit": null, + "display": "2,49 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B017Y4V20G", + "parent_asin": null, + "title": "Der Hobbit: Die Schlacht der funf Heere - Extended Edition [dt./OV]", + "url": "https://www.amazon.de/dp/B017Y4V20G?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Ian McKellen", + "role": "Darsteller" + }, + { + "name": "Martin Freeman", + "role": "Darsteller" + }, + { + "name": "Richard Armitage", + "role": "Darsteller" + }, + { + "name": "Ken Stott", + "role": "Darsteller" + }, + { + "name": "Graham McTavish", + "role": "Darsteller" + }, + { + "name": "William Kircher", + "role": "Darsteller" + }, + { + "name": "James Nesbitt", + "role": "Darsteller" + }, + { + "name": "Peter Jackson", + "role": "Regisseur" + }, + { + "name": "Carolynne Cunningham", + "role": "Produzent" + }, + { + "name": "Zane Weiner", + "role": "Produzent" + }, + { + "name": "Fran Walsh", + "role": "Produzent" + }, + { + "name": "Peter Jackson", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2015-11-12T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51-asgkrX5L._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51-asgkrX5L._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51-asgkrX5L.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51-asgkrX5L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51-asgkrX5L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51-asgkrX5L._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrToTtjY7Qcs9rB3u1W1oNwRTwOvnSdSj9lF51coam1n5a2vfxvIqMYxOeSs2HrTitcBdKXOdczT1mKlgaE7qG81KJ8zCAvHlKYkfWyLcmvSUthodZzQNo7%2B7MWzUbRtOmEqx7PQcJnp0B%2BJ7lOYmqR2" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "lowest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B01H6ZXLNE", + "parent_asin": null, + "title": "Harry G - Leben mit dem Isarpreiß", + "url": "https://www.amazon.de/dp/B01H6ZXLNE?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Deutsch Originalsprache", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Harry G", + "role": "Darsteller" + }, + { + "name": "Harry G", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ohne Altersbeschränkung", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2016-06-01T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51uqRjCgl5L._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51uqRjCgl5L._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51uqRjCgl5L.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51uqRjCgl5L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51uqRjCgl5L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51uqRjCgl5L._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 7.99, + "currency": "EUR", + "per_unit": null, + "display": "7,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrToTtjY7Qcs9jo6BsREDXO0TRmhTK7nrHiNfEdi3UqdO00k4cZK%2FCDrBaoqiYe346y2OmY%2Fb2i8rLuKMetiHnbKLj3H7igvjdLD6Rxyd9CuBwHwkqlvYtJRzAcUIi9yB3GENyLEd4bZ4WvX1ApwLuXa" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 7.99, + "currency": "EUR", + "per_unit": null, + "display": "7,99 €" + }, + "lowest_price": { + "value": 7.99, + "currency": "EUR", + "per_unit": null, + "display": "7,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B079S1JPRM", + "parent_asin": null, + "title": "Harry G - #HarrydieEhre", + "url": "https://www.amazon.de/dp/B079S1JPRM?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Deutsch Originalsprache", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Harry G.", + "role": "Darsteller" + }, + { + "name": "Philipp Lenner", + "role": "Regisseur" + }, + { + "name": "Philipp Lenner", + "role": "Produzent" + }, + { + "name": "Rocketstudios", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2018-02-16T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51ciljUClkL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51ciljUClkL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51ciljUClkL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51ciljUClkL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51ciljUClkL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51ciljUClkL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 13.99, + "currency": "EUR", + "per_unit": null, + "display": "13,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrTXEeFrVaBc75LF3cbA%2Bhs%2BeTE6IG4B7XIS2u%2B2iuvI9Wq%2Fe%2F4w%2FWbpXbCKvMg49zFxNGh%2BLE%2Fob2DgkaxzIjxzlsF8DmzbLonlS2BLsFw%2FiPr6XY23JKJvF3Psp8LXJVU%2FwRQebuizmMZqCRAaK26k" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 13.99, + "currency": "EUR", + "per_unit": null, + "display": "13,99 €" + }, + "lowest_price": { + "value": 13.99, + "currency": "EUR", + "per_unit": null, + "display": "13,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B07KTCFDPN", + "parent_asin": null, + "title": "Espen und die Legende vom Bergkönig", + "url": "https://www.amazon.de/dp/B07KTCFDPN?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Norwegisch Originalsprache", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Vebjørn Enger", + "role": "Darsteller" + }, + { + "name": "Eili Harboe", + "role": "Darsteller" + }, + { + "name": "Mads Sjøgård Pettersen", + "role": "Darsteller" + }, + { + "name": "Elias Holmen Sørensen", + "role": "Darsteller" + }, + { + "name": "Allan Hyde", + "role": "Darsteller" + }, + { + "name": "Mikkel Brænne Sandemose", + "role": "Regisseur" + }, + { + "name": "Aleksander Kirkwood Brown", + "role": "Autor" + }, + { + "name": "Espen Enger", + "role": "Autor" + }, + { + "name": "Synnøve Hørsdal", + "role": "Produzent" + }, + { + "name": "Åshild Ariane Ramborg", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 6 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2018-11-27T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/61b6g0lcvrL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/61b6g0lcvrL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/61b6g0lcvrL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/61b6g0lcvrL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/61b6g0lcvrL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/61b6g0lcvrL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrTXEeFrVaBc75gLPbmcBWWQ812R9KPwN6jcZL6BIjfGVNv6RSTzfcILjjRXDkqfcvkor8piquj9dbXqn0AmfGer8Ca7HBEsTpbnwtKC9vZHzXdZVTV7FJ0CyzlNtar0CUfQ4sA6qUjNlWN8ea5EW%2Ftx" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €" + }, + "lowest_price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B01KWGN698", + "parent_asin": null, + "title": "Die Hüterin der Wahrheit — Dinas Bestimmung", + "url": "https://www.amazon.de/dp/B01KWGN698?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Dänisch Originalsprache", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Rebecca Emilie Sattrup", + "role": "Darsteller" + }, + { + "name": "Petra Maria Scott", + "role": "Darsteller" + }, + { + "name": "Allan Hyde", + "role": "Darsteller" + }, + { + "name": "Jakob Oftebro", + "role": "Darsteller" + }, + { + "name": "Maria Bonnevie", + "role": "Darsteller" + }, + { + "name": "Søren Malling", + "role": "Darsteller" + }, + { + "name": "Stina Ekblad", + "role": "Darsteller" + }, + { + "name": "Lado Hadzic", + "role": "Darsteller" + }, + { + "name": "Adam Ild Rohweder", + "role": "Darsteller" + }, + { + "name": "Peter Plaugborg", + "role": "Darsteller" + }, + { + "name": "Kenneth Kainz", + "role": "Regisseur" + }, + { + "name": "Anders Thomas Jensen", + "role": "Autor" + }, + { + "name": "Nina Lyng", + "role": "Produzent" + }, + { + "name": "Eva Juel Hammerich", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2016-08-26T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51QC8-sIblL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51QC8-sIblL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51QC8-sIblL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51QC8-sIblL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51QC8-sIblL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51QC8-sIblL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.98, + "currency": "EUR", + "per_unit": null, + "display": "3,98 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrToTtjY7Qcs9j6HLSIm1HkK4uifVuo872UCOkzdMOkHEt0RYwno9LQrO%2BTHXtMPc50bZggA1z%2B8poFXBXZmhlY7OEr96I%2B99lqwd02QOOUyG1k7e52LIKuoSL7pO4HT7hh5X7JBZN%2B%2BDT8Y%2BU85nz%2By" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.98, + "currency": "EUR", + "per_unit": null, + "display": "3,98 €" + }, + "lowest_price": { + "value": 3.98, + "currency": "EUR", + "per_unit": null, + "display": "3,98 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B07FQ7G1T2", + "parent_asin": null, + "title": "Clip: Zeichnung Ron Weasley, Harry Potter und Hermione Granger", + "url": "https://www.amazon.de/dp/B07FQ7G1T2?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Untertitelt", + "Deutsch Gesprochen" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Jasmina Susak", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ohne Altersbeschränkung", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2018-07-19T14:25:01.178Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51JcboN57aL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51JcboN57aL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51JcboN57aL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51JcboN57aL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51JcboN57aL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51JcboN57aL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 0.99, + "currency": "EUR", + "per_unit": null, + "display": "0,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrTXEeFrVaBc7%2F1YG3OTidp8qLZw98Tfvgf3SURdxKHEVavxYdiqhGehbYKgF1UHL0RoMQVJ2GgZj2ndpwE55MqO%2B%2F2zGwvRAwuwpPNOS8Yplop23AOFrce5y94%2BcHwctHYex4JhdL%2BRyps8h68PB5fb" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 0.99, + "currency": "EUR", + "per_unit": null, + "display": "0,99 €" + }, + "lowest_price": { + "value": 0.99, + "currency": "EUR", + "per_unit": null, + "display": "0,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B07QBR6932", + "parent_asin": null, + "title": "Ballet Shoes", + "url": "https://www.amazon.de/dp/B07QBR6932?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Lucy Boynton", + "role": "Darsteller" + }, + { + "name": "Yasmin Paige", + "role": "Darsteller" + }, + { + "name": "Emilia Fox", + "role": "Darsteller" + }, + { + "name": "Richard Griffiths", + "role": "Darsteller" + }, + { + "name": "Eileen Atkins", + "role": "Darsteller" + }, + { + "name": "Marc Warren", + "role": "Darsteller" + }, + { + "name": "Victoria Wood", + "role": "Darsteller" + }, + { + "name": "Sandra Goldbacher", + "role": "Regisseur" + }, + { + "name": "Heidi Thomas", + "role": "Autor" + }, + { + "name": "Piers Wenger", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ohne Altersbeschränkung", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2019-04-14T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/516V4ESEZuL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/516V4ESEZuL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/516V4ESEZuL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/516V4ESEZuL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/516V4ESEZuL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/516V4ESEZuL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": null, + "type": null, + "message": null + }, + "condition": null, + "merchant": { + "default_shipping_country": null, + "merchant_id": null, + "name": null + }, + "other": { + "buybox_winner": null, + "loyalty_points": null, + "amazon_fulfilled": null, + "free_shipping_eligible": null, + "prime_eligible": null, + "prime_exclusive": null, + "prime_pantry": null, + "violates_map": null, + "offer_id": null + } + }, + "offers_summary": null + }, + { + "asin": "B01L32RIHG", + "parent_asin": null, + "title": "Als die Frauen noch Schwänze hatten", + "url": "https://www.amazon.de/dp/B01L32RIHG?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Italienisch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Senta Berger", + "role": "Darsteller" + }, + { + "name": "Giuliano Gemma", + "role": "Darsteller" + }, + { + "name": "Frank Wolff", + "role": "Darsteller" + }, + { + "name": "Renzo Montagnani", + "role": "Darsteller" + }, + { + "name": "Lino Toffolo", + "role": "Darsteller" + }, + { + "name": "Francesco Mulé", + "role": "Darsteller" + }, + { + "name": "Aldo Giuffrè", + "role": "Darsteller" + }, + { + "name": "Pasquale Festa Campanile", + "role": "Regisseur" + }, + { + "name": "Lina Wertmüller", + "role": "Autor" + }, + { + "name": "Pasquale Festa Campanile", + "role": "Autor" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 16 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2016-09-06T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/61RC-7kvzkL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/61RC-7kvzkL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/61RC-7kvzkL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/61RC-7kvzkL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/61RC-7kvzkL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/61RC-7kvzkL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrToTtjY7Qcs9gggdZ4UiL85TBfzN5IJ2yQ46W6%2BxWvndbseRmVBrgouKASw%2Bp65a2JAVx%2B7gZB4vKwp3UyVQ3zD8tDc3FrYlas3%2BPBaVPAe89t3Vgrxm%2BUDijBE7%2Fp%2BI1h85pn3tm02nMVmQN%2Fk0iTQ" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "lowest_price": { + "value": 3.99, + "currency": "EUR", + "per_unit": null, + "display": "3,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B01BX2FMWE", + "parent_asin": null, + "title": "Harry und Sally [dt./OV]", + "url": "https://www.amazon.de/dp/B01BX2FMWE?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Originalsprache", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Billy Crystal", + "role": "Darsteller" + }, + { + "name": "Meg Ryan", + "role": "Darsteller" + }, + { + "name": "Bruno Kirby", + "role": "Darsteller" + }, + { + "name": "Carrie Fisher", + "role": "Darsteller" + }, + { + "name": "Steven Ford", + "role": "Darsteller" + }, + { + "name": "Rob Reiner", + "role": "Regisseur" + }, + { + "name": "Nora Ephron", + "role": "Autor" + }, + { + "name": "Andrew Scheinman", + "role": "Produzent" + }, + { + "name": "Jeffrey Stott", + "role": "Produzent" + }, + { + "name": "Nora Ephron", + "role": "Produzent" + }, + { + "name": "Rob Reiner", + "role": "Produzent" + }, + { + "name": "Steve Nicolaides", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 16 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-12-01T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51HowL7x4NL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51HowL7x4NL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51HowL7x4NL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51HowL7x4NL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51HowL7x4NL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51HowL7x4NL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "ahM%2FWYaVsrToTtjY7Qcs9jGk7MEKEgqpWT%2FawQoVaOzBLTAsuv3hrmUUgfVS8WZkc8eZTZ74pUikJq1lo9esUKNA83WQgi%2BZ0h6d3ix%2BiaVeABzpOygeYRpa1lffpqLJT8Hm2fwqUS%2FuxhkfiTFAM3zs5gN2fBuk" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €" + }, + "lowest_price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B07FPW3ZBN", + "parent_asin": null, + "title": "Mamma Mia! Here We Go Again [dt./OV]", + "url": "https://www.amazon.de/dp/B07FPW3ZBN?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Meryl Streep", + "role": "Darsteller" + }, + { + "name": "Pierce Brosnan", + "role": "Darsteller" + }, + { + "name": "Colin Firth", + "role": "Darsteller" + }, + { + "name": "Stellan Skarsgård", + "role": "Darsteller" + }, + { + "name": "Julie Walters", + "role": "Darsteller" + }, + { + "name": "Dominic Cooper", + "role": "Darsteller" + }, + { + "name": "Amanda Seyfried", + "role": "Darsteller" + }, + { + "name": "Christine Baranski", + "role": "Darsteller" + }, + { + "name": "Lily James", + "role": "Darsteller" + }, + { + "name": "Josh Dylan", + "role": "Darsteller" + }, + { + "name": "Hugh Skinner", + "role": "Darsteller" + }, + { + "name": "Jeremy Irvine", + "role": "Darsteller" + }, + { + "name": "Alexa Davies", + "role": "Darsteller" + }, + { + "name": "Jessica Keenan Wynn", + "role": "Darsteller" + }, + { + "name": "Andy Garcia", + "role": "Darsteller" + }, + { + "name": "Cher", + "role": "Darsteller" + }, + { + "name": "Ol Parker", + "role": "Regisseur" + }, + { + "name": "Ol Parker", + "role": "Autor" + }, + { + "name": "Judy Craymer", + "role": "Produzent" + }, + { + "name": "Gary Goetzman", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ohne Altersbeschränkung", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2019-05-22T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51bV6Et+czL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51bV6Et+czL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51bV6Et+czL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51bV6Et+czL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51bV6Et+czL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51bV6Et+czL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv58L5GvBnRjSlTMiPJedBiIjbti5MRyRpVBCEfhJmqibs6cgbHLsSmw54Y1MRLWJIo%2Bh8c9VKNOmpkuAt%2F9Fsf74%2BYwdDCw0KkRDjJ6V5R5NuhncO5Kb0RLUtdHsQr%2FkH8wuoW42fEK2c8f9MLzFig%2F" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €" + }, + "lowest_price": { + "value": 9.99, + "currency": "EUR", + "per_unit": null, + "display": "9,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B07DY2M7Y2", + "parent_asin": null, + "title": "Harry Potter: The Complete Collection [8 DVDs]", + "url": "https://www.amazon.de/dp/B07DY2M7Y2?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Englisch Veröffentlicht", + "Deutsch Veröffentlicht", + "Englisch Veröffentlicht", + "Deutsch Veröffentlicht", + "Englisch Veröffentlicht", + "Deutsch Veröffentlicht", + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Französisch Untertitelt", + "Niederländisch Untertitelt", + "Deutsch Originalsprache", + "Englisch Originalsprache", + "Französisch Originalsprache", + "Niederländisch Originalsprache" + ], + "formats": [ + "Dolby", + "PAL" + ], + "pages_count": null, + "color": null, + "unit_count": 8, + "size": null, + "dimensions": { + "height": { + "value": 7.67715, + "unit": "Zoll" + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": 4.76377, + "unit": "Zoll" + } + }, + "weight": { + "value": 1.1904962148, + "unit": "Pfund" + } + }, + "info": { + "contributors": [ + { + "name": "Daniel Radcliffe", + "role": "Darsteller" + }, + { + "name": "Emma Watson", + "role": "Darsteller" + }, + { + "name": "Rupert Grint", + "role": "Darsteller" + }, + { + "name": "Chris Columbus", + "role": "Regisseur" + }, + { + "name": "Alfonso Cuarón", + "role": "Regisseur" + }, + { + "name": "Mike Newell", + "role": "Regisseur" + }, + { + "name": "David Yates", + "role": "Regisseur" + }, + { + "name": "Daniel Radcliffe", + "role": "Hauptdarsteller" + }, + { + "name": "Emma Watson", + "role": "Hauptdarsteller" + } + ], + "manufacturer": "Warner Home Video - DVD", + "brand": "Warner Home Video", + "model": null, + "part_number": "1000726852", + "product_group": "DVD", + "binding": "DVD", + "is_adult": null, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": "Standard Version", + "warranty": null, + "publication_date": "2018-09-06T00:00:01Z", + "release_date": "2018-09-06T00:00:01Z", + "external_ids": { + "ean": [ + "5051890315960" + ], + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51YH9w-Q0hL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51YH9w-Q0hL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51YH9w-Q0hL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51YH9w-Q0hL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51WIBChefSL._AC75_.jpg", + "https://m.media-amazon.com/images/I/41UVT7hB3SL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51YH9w-Q0hL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51WIBChefSL._AC160_.jpg", + "https://m.media-amazon.com/images/I/41UVT7hB3SL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51YH9w-Q0hL._AC_.jpg", + "https://m.media-amazon.com/images/I/51WIBChefSL._AC_.jpg", + "https://m.media-amazon.com/images/I/41UVT7hB3SL._AC_.jpg" + ] + }, + "variants": { + "small": [ + "https://m.media-amazon.com/images/I/51WIBChefSL._SL75_.jpg", + "https://m.media-amazon.com/images/I/41UVT7hB3SL._SL75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51WIBChefSL._SL160_.jpg", + "https://m.media-amazon.com/images/I/41UVT7hB3SL._SL160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51WIBChefSL.jpg", + "https://m.media-amazon.com/images/I/41UVT7hB3SL.jpg" + ] + } + }, + "trade_in": null, + "prices": { + "price": { + "value": 28.99, + "currency": "EUR", + "per_unit": null, + "display": "28,99 €", + "savings": { + "value": 1.0, + "currency": "EUR", + "per_unit": null, + "display": "1,00 € (3%)", + "percentage": 3.0 + } + }, + "pvp": { + "value": 29.99, + "currency": "EUR", + "per_unit": null, + "display": "29,99 €" + }, + "availability": { + "max_order_quantity": 3, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": null, + "merchant_id": "A3JWKAKR8XB7XF", + "name": "Amazon.de" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": true, + "free_shipping_eligible": true, + "prime_eligible": true, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv58L5GvBnRjSl40NqAqOzfpHXhD4n1JeQxoHIJfzKYLm9Q5aAlB1RyalGfu4MRibaTpB%2B%2B%2BTJgJp%2B0XIslVnIA9aourwFzi46w%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 50.11, + "currency": "EUR", + "per_unit": null, + "display": "50,11 €" + }, + "lowest_price": { + "value": 28.99, + "currency": "EUR", + "per_unit": null, + "display": "28,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 8 + }, + { + "highest_price": { + "value": 33.76, + "currency": "EUR", + "per_unit": null, + "display": "33,76 €" + }, + "lowest_price": { + "value": 32.0, + "currency": "EUR", + "per_unit": null, + "display": "32,00 €" + }, + "condition": { + "condition": "Used", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 2 + } + ] + }, + { + "asin": "B00FYU986S", + "parent_asin": null, + "title": "Zurück in die Zukunft [dt./OV]", + "url": "https://www.amazon.de/dp/B00FYU986S?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Deutsch Untertitelt", + "Deutsch Originalsprache" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Michael J. Fox", + "role": "Darsteller" + }, + { + "name": "Christopher Lloyd", + "role": "Darsteller" + }, + { + "name": "Lea Thompson", + "role": "Darsteller" + }, + { + "name": "Crispin Glover", + "role": "Darsteller" + }, + { + "name": "Thomas F. Wilson", + "role": "Darsteller" + }, + { + "name": "Claudia Wells", + "role": "Darsteller" + }, + { + "name": "Marc McClure", + "role": "Darsteller" + }, + { + "name": "Wendie Jo Sperber", + "role": "Darsteller" + }, + { + "name": "George DiCenzo", + "role": "Darsteller" + }, + { + "name": "Frances Lee McCain", + "role": "Darsteller" + }, + { + "name": "James Tolkan", + "role": "Darsteller" + }, + { + "name": "J.J. Cohen", + "role": "Darsteller" + }, + { + "name": "Casey Siemaszko", + "role": "Darsteller" + }, + { + "name": "Billy Zane", + "role": "Darsteller" + }, + { + "name": "Harry Waters Jr.", + "role": "Darsteller" + }, + { + "name": "Robert Zemeckis", + "role": "Regisseur" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-02-26T01:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51Zo+7Ye+BL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51Zo+7Ye+BL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51Zo+7Ye+BL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51Zo+7Ye+BL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51Zo+7Ye+BL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51Zo+7Ye+BL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv7rLmyzIMrF%2Bt262JcIl3%2FU1kHXzXUXjw4oh5cG0OenWd1PiN4VvEh28gcPo6dvqRYQ5n1Ew5ga7T4qspdhzcZzwMV988XdBDrQw4uTXo33Zgtc%2BAQVOthXCYou3kINMLks6sWRQjbYlGT6yNzBiz7Y" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €" + }, + "lowest_price": { + "value": 2.99, + "currency": "EUR", + "per_unit": null, + "display": "2,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B01LZQTGKP", + "parent_asin": null, + "title": "Harry Potter und der Orden des Phönix - Gesprochen von Rufus Beck: Harry Potter 5", + "url": "https://www.amazon.de/dp/B01LZQTGKP?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Veröffentlicht", + "Deutsch Unbekannt" + ], + "formats": [ + "Ungekürzte Ausgabe" + ], + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "J.K. Rowling", + "role": "Autor" + }, + { + "name": "Rufus Beck", + "role": "Erzähler" + }, + { + "name": "Pottermore Publishing", + "role": "Verlag" + } + ], + "manufacturer": "Pottermore Publishing", + "brand": null, + "model": null, + "part_number": null, + "product_group": "Audible", + "binding": "Audible Hörbuch", + "is_adult": false, + "audience_rating": null, + "edition": null, + "warranty": null, + "publication_date": "2016-10-18T00:00:00Z", + "release_date": "2016-10-18T00:00:00-00:00", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51UerUBzjGL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51UerUBzjGL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51UerUBzjGL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51UerUBzjGL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51UerUBzjGL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51UerUBzjGL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 39.95, + "currency": "EUR", + "per_unit": null, + "display": "39,95 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Jetzt als Download verfügbar." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": null, + "merchant_id": "ALQGD0RUJOUO0", + "name": "Audible GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv7QM3DJQf2adoIWoTdIgRYrcKGWf74TlJ0iUnfn0bdlXSkD7pD7nGJZf9PF%2FqsBuI%2FsGgRbFdliX4bEvACw5zPzw%2FPDZ%2FpB7xGj3YHJybL8TKT2eHRvFit%2ByeH5G2bRLkRP%2Bu3p6T3DBw%3D%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 39.95, + "currency": "EUR", + "per_unit": null, + "display": "39,95 €" + }, + "lowest_price": { + "value": 39.95, + "currency": "EUR", + "per_unit": null, + "display": "39,95 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B00P1VF84G", + "parent_asin": null, + "title": "Der Hobbit: Smaugs Einöde - Extended Edition [dt./OV]", + "url": "https://www.amazon.de/dp/B00P1VF84G?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Untertitelt", + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Englisch Originalsprache", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Ian McKellen", + "role": "Darsteller" + }, + { + "name": "Martin Freeman", + "role": "Darsteller" + }, + { + "name": "Richard Armitage", + "role": "Darsteller" + }, + { + "name": "Benedict Cumberbatch", + "role": "Darsteller" + }, + { + "name": "Evangeline Lilly", + "role": "Darsteller" + }, + { + "name": "Lee Pace", + "role": "Darsteller" + }, + { + "name": "Luke Evans", + "role": "Darsteller" + }, + { + "name": "Peter Jackson", + "role": "Regisseur" + }, + { + "name": "Fran Walsh", + "role": "Autor" + }, + { + "name": "Philippa Boyens", + "role": "Autor" + }, + { + "name": "Guillermo Del Toro", + "role": "Autor" + }, + { + "name": "Peter Jackson", + "role": "Autor" + }, + { + "name": "Peter Jackson", + "role": "Produzent" + }, + { + "name": "Fran Walsh", + "role": "Produzent" + }, + { + "name": "Zane Weiner", + "role": "Produzent" + }, + { + "name": "Carolynne Cunningham", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2014-10-28T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51xwpgi2TUL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51xwpgi2TUL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51xwpgi2TUL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51xwpgi2TUL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51xwpgi2TUL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51xwpgi2TUL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv7rLmyzIMrF%2BmXviTres2V%2Fu64aZlUcxXzFZRrKDY8xCBlkmHepAxEjbXLNFXqoq416ENsB3lP6JZTFMrLJUFbGk1KELE9eqF7B%2B3eSF%2Bl%2BQd1wNdY%2FxaMTTsOs7Z2G8eXfJAXVJ4%2Fhx4ziKYvFS3lP" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "lowest_price": { + "value": 10.49, + "currency": "EUR", + "per_unit": null, + "display": "10,49 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B07ZKP6QZM", + "parent_asin": null, + "title": "Überraschung für Mania", + "url": "https://www.amazon.de/dp/B07ZKP6QZM?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Gesprochen" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Not specified", + "role": "Produzent" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ohne Altersbeschränkung", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": "2019-10-28T00:00:00.000Z", + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": null, + "medium": null, + "large": null, + "cropped": { + "small": [], + "medium": [], + "large": [] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": 1.99, + "currency": "EUR", + "per_unit": null, + "display": "1,99 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3HBS5CIENBL3I", + "name": "Amazon Digital Germany GmbH" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": false, + "free_shipping_eligible": false, + "prime_eligible": false, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv58L5GvBnRjSpj0AirJ8eZ2Xnm%2F6yIWo8EgX1w0YAHS60yOgenY2bNKxGowPtHcQCnnHyZR5obZAYICgNavkSUGbBLx%2BPv7KiCDYgW4ipe79z2o8%2BG%2B0Utsw1z%2BG0rZzaU8D2WwDLAgc2iCc%2FdbJE4Q" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 1.99, + "currency": "EUR", + "per_unit": null, + "display": "1,99 €" + }, + "lowest_price": { + "value": 1.99, + "currency": "EUR", + "per_unit": null, + "display": "1,99 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + }, + { + "asin": "B0792QK8GL", + "parent_asin": "B07QLJ7WPL", + "title": "LEGO Harry Potter und die Kammer des Schreckens – Die Peitschende Weide von Hogwarts (75953) Bauset (753 Teile)", + "url": "https://www.amazon.de/dp/B0792QK8GL?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": [ + "Mit eine baubaren Modell der Peitschenden Weide, des Ford Anglia und eines Bereichs von Schloss Hogwarts.", + "Der dreistöckige Schlossbereich von Hogwarts besteht aus einem Tor, einem Wehrgang, 3 Türmen, einem Schlafsaal mit 2 Betten, ein Zaubertränke-Klassenzimmer mit Arbeitstisch und dem Büro von Severus Snape.", + "Drehe die Äste der Peitschenden Weide, um das Auto einzufangen, und wirf es dann auf den Boden, damit Ron und Harry durch das Schlosstor fahren können.", + "Die Zubehörteile umfassen Zaubertränke, Kessel, 2 Koffer, 5 Zauberstäbe, Kerzen, eine Laterne, eine Ausgabe des Tagespropheten und ein magisches Zauberspruch-Blatt, einen Besen, Tische, einen Stuhl, Werkzeuge und 2 Tintenfässer mit einer Feder.", + "Der Schlossbereich von Hogwarts ist über 27 cm hoch, 35 cm breit und 8 cm tief." + ], + "languages": [ + "Italienisch Handbuch", + "Deutsch Handbuch", + "Französisch Handbuch", + "Englisch Handbuch", + "Spanisch Handbuch", + "Deutsch Unbekannt", + "Englisch Unbekannt", + "Dänisch Unbekannt", + "Französisch Unbekannt", + "Italienisch Unbekannt", + "Spanisch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": "Keine", + "unit_count": 1, + "size": null, + "dimensions": { + "height": { + "value": 11.1023621934, + "unit": "Zoll" + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": 2.9133858238, + "unit": "Zoll" + } + }, + "weight": { + "value": 2.27517054384, + "unit": "Pfund" + } + }, + "info": { + "contributors": [ + { + "name": "LEGO", + "role": "Designer" + } + ], + "manufacturer": "LEGO", + "brand": "LEGO", + "model": "75953", + "part_number": "75953", + "product_group": "Toy", + "binding": "Spielzeug", + "is_adult": false, + "audience_rating": null, + "edition": null, + "warranty": "2 Jahre", + "publication_date": null, + "release_date": "2018-09-28T00:00:01Z", + "external_ids": { + "ean": [ + "5702016110364" + ], + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51FyQUatZTL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51FyQUatZTL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51FyQUatZTL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51FyQUatZTL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51vgr9N9hZL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51NeKyrAYtL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51ximg2P99L._AC75_.jpg", + "https://m.media-amazon.com/images/I/511tS-JufIL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51QvxHPMyLL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51pDpjPLS8L._AC75_.jpg", + "https://m.media-amazon.com/images/I/41irNkPwOaL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51+aEjs3XXL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51GgPk4kk7L._AC75_.jpg", + "https://m.media-amazon.com/images/I/51P0HP1uKOL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51LrBHeVmuL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51FyQUatZTL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51vgr9N9hZL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51NeKyrAYtL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51ximg2P99L._AC160_.jpg", + "https://m.media-amazon.com/images/I/511tS-JufIL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51QvxHPMyLL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51pDpjPLS8L._AC160_.jpg", + "https://m.media-amazon.com/images/I/41irNkPwOaL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51+aEjs3XXL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51GgPk4kk7L._AC160_.jpg", + "https://m.media-amazon.com/images/I/51P0HP1uKOL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51LrBHeVmuL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51FyQUatZTL._AC_.jpg", + "https://m.media-amazon.com/images/I/51vgr9N9hZL._AC_.jpg", + "https://m.media-amazon.com/images/I/51NeKyrAYtL._AC_.jpg", + "https://m.media-amazon.com/images/I/51ximg2P99L._AC_.jpg", + "https://m.media-amazon.com/images/I/511tS-JufIL._AC_.jpg", + "https://m.media-amazon.com/images/I/51QvxHPMyLL._AC_.jpg", + "https://m.media-amazon.com/images/I/51pDpjPLS8L._AC_.jpg", + "https://m.media-amazon.com/images/I/41irNkPwOaL._AC_.jpg", + "https://m.media-amazon.com/images/I/51+aEjs3XXL._AC_.jpg", + "https://m.media-amazon.com/images/I/51GgPk4kk7L._AC_.jpg", + "https://m.media-amazon.com/images/I/51P0HP1uKOL._AC_.jpg", + "https://m.media-amazon.com/images/I/51LrBHeVmuL._AC_.jpg" + ] + }, + "variants": { + "small": [ + "https://m.media-amazon.com/images/I/51vgr9N9hZL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51NeKyrAYtL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51ximg2P99L._SL75_.jpg", + "https://m.media-amazon.com/images/I/511tS-JufIL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51QvxHPMyLL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51pDpjPLS8L._SL75_.jpg", + "https://m.media-amazon.com/images/I/41irNkPwOaL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51+aEjs3XXL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51GgPk4kk7L._SL75_.jpg", + "https://m.media-amazon.com/images/I/51P0HP1uKOL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51LrBHeVmuL._SL75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51vgr9N9hZL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51NeKyrAYtL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51ximg2P99L._SL160_.jpg", + "https://m.media-amazon.com/images/I/511tS-JufIL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51QvxHPMyLL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51pDpjPLS8L._SL160_.jpg", + "https://m.media-amazon.com/images/I/41irNkPwOaL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51+aEjs3XXL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51GgPk4kk7L._SL160_.jpg", + "https://m.media-amazon.com/images/I/51P0HP1uKOL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51LrBHeVmuL._SL160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51vgr9N9hZL.jpg", + "https://m.media-amazon.com/images/I/51NeKyrAYtL.jpg", + "https://m.media-amazon.com/images/I/51ximg2P99L.jpg", + "https://m.media-amazon.com/images/I/511tS-JufIL.jpg", + "https://m.media-amazon.com/images/I/51QvxHPMyLL.jpg", + "https://m.media-amazon.com/images/I/51pDpjPLS8L.jpg", + "https://m.media-amazon.com/images/I/41irNkPwOaL.jpg", + "https://m.media-amazon.com/images/I/51+aEjs3XXL.jpg", + "https://m.media-amazon.com/images/I/51GgPk4kk7L.jpg", + "https://m.media-amazon.com/images/I/51P0HP1uKOL.jpg", + "https://m.media-amazon.com/images/I/51LrBHeVmuL.jpg" + ] + } + }, + "trade_in": null, + "prices": { + "price": { + "value": 50.77, + "currency": "EUR", + "per_unit": null, + "display": "50,77 €", + "savings": { + "value": 19.22, + "currency": "EUR", + "per_unit": null, + "display": "19,22 € (27%)", + "percentage": 27.0 + } + }, + "pvp": { + "value": 69.99, + "currency": "EUR", + "per_unit": null, + "display": "69,99 €" + }, + "availability": { + "max_order_quantity": 2, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": null, + "merchant_id": "A3JWKAKR8XB7XF", + "name": "Amazon.de" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": true, + "free_shipping_eligible": true, + "prime_eligible": true, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv58L5GvBnRjSopZdzoAc0TE8Ld1ZaYa%2BCVT1PTRUnVqv0afCiH72JUZCPcmxg1JGIGOHujRbb%2BocDr8g9QEVs311ZMgIhadq4Q%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 129.95, + "currency": "EUR", + "per_unit": null, + "display": "129,95 €" + }, + "lowest_price": { + "value": 50.77, + "currency": "EUR", + "per_unit": null, + "display": "50,77 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 85 + }, + { + "highest_price": { + "value": 69.0, + "currency": "EUR", + "per_unit": null, + "display": "69,00 €" + }, + "lowest_price": { + "value": 59.9, + "currency": "EUR", + "per_unit": null, + "display": "59,90 €" + }, + "condition": { + "condition": "Used", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 2 + } + ] + }, + { + "asin": "B0874Y2T4C", + "parent_asin": null, + "title": "Trittbrettfahrer", + "url": "https://www.amazon.de/dp/B0874Y2T4C?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Untertitelt", + "Englisch Untertitelt", + "Deutsch Gesprochen", + "Englisch Gesprochen", + "Englisch Originalsprache", + "Deutsch Unbekannt" + ], + "formats": null, + "pages_count": null, + "color": null, + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": [ + { + "name": "Amy Aquino", + "role": "Darsteller" + }, + { + "name": "Titus Welliver", + "role": "Darsteller" + }, + { + "name": "Lance Reddick", + "role": "Darsteller" + }, + { + "name": "Madison Lintz", + "role": "Darsteller" + }, + { + "name": "Jamie Hector", + "role": "Darsteller" + }, + { + "name": "Ernest Dickerson", + "role": "Regisseur" + }, + { + "name": "Eric Overmyer & Alex Meenehan", + "role": "Autor" + }, + { + "name": "Titus Welliver", + "role": "Produzent" + }, + { + "name": "Daniel Pyne", + "role": "Produzent" + }, + { + "name": "Tom Bernardo", + "role": "Produzent" + }, + { + "name": "Francesco Tignini", + "role": "Produzent" + }, + { + "name": "Henrik Pabst", + "role": "Produzent" + }, + { + "name": "Hold Fast Productions LLC", + "role": "Produzent" + }, + { + "name": "Henrik Bastin", + "role": "Produzent" + }, + { + "name": "Jamie Boscardin Martin", + "role": "Produzent" + }, + { + "name": "Mark Douglas", + "role": "Produzent" + }, + { + "name": "Jeffrey Fiskin", + "role": "Produzent" + }, + { + "name": "Eric Overmyer", + "role": "Produzent" + }, + { + "name": "James Baker", + "role": "Produzent" + }, + { + "name": "Bo Stehmeier", + "role": "Produzent" + }, + { + "name": "Michael Connelly", + "role": "Produzent" + }, + { + "name": "Pieter Jan Brugge", + "role": "Produzent" + }, + { + "name": "Eric Overmyer", + "role": "Idee" + }, + { + "name": "Michael Connelly", + "role": "Idee" + }, + { + "name": "Linda Park", + "role": "Guest Actor" + }, + { + "name": "Scott Klace", + "role": "Guest Actor" + }, + { + "name": "Jon Fletcher", + "role": "Guest Actor" + }, + { + "name": "Mary-Bonner Baker", + "role": "Guest Actor" + }, + { + "name": "Daya Vaidya", + "role": "Guest Actor" + }, + { + "name": "Cynthia Kaye McWilliams", + "role": "Guest Actor" + }, + { + "name": "Treva Eitienne", + "role": "Guest Actor" + }, + { + "name": "Tzi Ma", + "role": "Guest Actor" + }, + { + "name": "Bambadjan Bamba", + "role": "Guest Actor" + }, + { + "name": "Jamie Anne Allman", + "role": "Guest Actor" + }, + { + "name": "Mitchell Fink", + "role": "Guest Actor" + }, + { + "name": "Abby Brammell", + "role": "Guest Actor" + }, + { + "name": "Jacqueline Obradors", + "role": "Guest Actor" + }, + { + "name": "DaJuan Johnson", + "role": "Guest Actor" + }, + { + "name": "Richard Brooks", + "role": "Guest Actor" + }, + { + "name": "David Marciano", + "role": "Guest Actor" + }, + { + "name": "Bess Armstrong", + "role": "Guest Actor" + }, + { + "name": "Mimi Rogers", + "role": "Guest Actor" + }, + { + "name": "Lynn Collins", + "role": "Guest Actor" + }, + { + "name": "Amir Talai", + "role": "Guest Actor" + }, + { + "name": "Gregory Scott Cummins", + "role": "Guest Actor" + }, + { + "name": "Troy Evans", + "role": "Guest Actor" + }, + { + "name": "Celestino Cornielle", + "role": "Guest Actor" + }, + { + "name": "Eric Ladin", + "role": "Guest Actor" + }, + { + "name": "Ashton Holmes", + "role": "Guest Actor" + }, + { + "name": "Kristen Ariza", + "role": "Guest Actor" + } + ], + "manufacturer": null, + "brand": null, + "model": null, + "part_number": null, + "product_group": "Video On Demand", + "binding": "Prime Video", + "is_adult": false, + "audience_rating": "Freigegeben ab 12 Jahren", + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": null, + "external_ids": { + "ean": null, + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/41C1gZcP+jL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/41C1gZcP+jL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/41C1gZcP+jL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/41C1gZcP+jL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/41C1gZcP+jL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/41C1gZcP+jL._AC_.jpg" + ] + }, + "variants": null + }, + "trade_in": null, + "prices": { + "price": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": null, + "type": null, + "message": null + }, + "condition": null, + "merchant": { + "default_shipping_country": null, + "merchant_id": null, + "name": null + }, + "other": { + "buybox_winner": null, + "loyalty_points": null, + "amazon_fulfilled": null, + "free_shipping_eligible": null, + "prime_eligible": null, + "prime_exclusive": null, + "prime_pantry": null, + "violates_map": null, + "offer_id": null + } + }, + "offers_summary": null + }, + { + "asin": "3844530533", + "parent_asin": null, + "title": "Harry Potter. Die große Box zum Jubiläum. Alle 7 Bände.: Gelesen von Rufus Beck", + "url": "https://www.amazon.de/dp/3844530533?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": null, + "languages": [ + "Deutsch Veröffentlicht", + "Deutsch Originalsprache" + ], + "formats": [ + "Hörbuch", + "MP3-Audio", + "Ungekürzte Ausgabe" + ], + "pages_count": null, + "color": "Brown", + "unit_count": null, + "size": null, + "dimensions": { + "height": { + "value": 5.9055, + "unit": "Zoll" + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": 2.91338, + "unit": "Zoll" + } + }, + "weight": { + "value": 1.9290447925, + "unit": "Pfund" + } + }, + "info": { + "contributors": [ + { + "name": "Rowling, J.K.", + "role": "Autor" + }, + { + "name": "Kübrich, Angela", + "role": "Regisseur" + }, + { + "name": "Beck, Rufus", + "role": "Sprecher" + }, + { + "name": "Fritz, Klaus", + "role": "Übersetzer" + } + ], + "manufacturer": "der Hörverlag", + "brand": "Dhv Der Hörverlag", + "model": null, + "part_number": "52391587", + "product_group": "Book", + "binding": "MP3 CD", + "is_adult": null, + "audience_rating": null, + "edition": "Ungekürzte Lesung", + "warranty": null, + "publication_date": "2018-08-27T00:00:01Z", + "release_date": "2018-08-27T00:00:01Z", + "external_ids": { + "ean": [ + "9783844530537" + ], + "isbn": [ + "3844530533" + ], + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/61RlR8Q3lKL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/61RlR8Q3lKL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/61RlR8Q3lKL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/61RlR8Q3lKL._AC75_.jpg", + "https://m.media-amazon.com/images/I/6157JFrGCCL._AC75_.jpg", + "https://m.media-amazon.com/images/I/61Vws0MNp5L._AC75_.jpg", + "https://m.media-amazon.com/images/I/615runZ4PGL._AC75_.jpg", + "https://m.media-amazon.com/images/I/61k89qbVUoL._AC75_.jpg", + "https://m.media-amazon.com/images/I/61GwCV3BfBL._AC75_.jpg", + "https://m.media-amazon.com/images/I/615Aj-qvOSL._AC75_.jpg", + "https://m.media-amazon.com/images/I/61xpdNEL1RL._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/61RlR8Q3lKL._AC160_.jpg", + "https://m.media-amazon.com/images/I/6157JFrGCCL._AC160_.jpg", + "https://m.media-amazon.com/images/I/61Vws0MNp5L._AC160_.jpg", + "https://m.media-amazon.com/images/I/615runZ4PGL._AC160_.jpg", + "https://m.media-amazon.com/images/I/61k89qbVUoL._AC160_.jpg", + "https://m.media-amazon.com/images/I/61GwCV3BfBL._AC160_.jpg", + "https://m.media-amazon.com/images/I/615Aj-qvOSL._AC160_.jpg", + "https://m.media-amazon.com/images/I/61xpdNEL1RL._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/61RlR8Q3lKL._AC_.jpg", + "https://m.media-amazon.com/images/I/6157JFrGCCL._AC_.jpg", + "https://m.media-amazon.com/images/I/61Vws0MNp5L._AC_.jpg", + "https://m.media-amazon.com/images/I/615runZ4PGL._AC_.jpg", + "https://m.media-amazon.com/images/I/61k89qbVUoL._AC_.jpg", + "https://m.media-amazon.com/images/I/61GwCV3BfBL._AC_.jpg", + "https://m.media-amazon.com/images/I/615Aj-qvOSL._AC_.jpg", + "https://m.media-amazon.com/images/I/61xpdNEL1RL._AC_.jpg" + ] + }, + "variants": { + "small": [ + "https://m.media-amazon.com/images/I/6157JFrGCCL._SL75_.jpg", + "https://m.media-amazon.com/images/I/61Vws0MNp5L._SL75_.jpg", + "https://m.media-amazon.com/images/I/615runZ4PGL._SL75_.jpg", + "https://m.media-amazon.com/images/I/61k89qbVUoL._SL75_.jpg", + "https://m.media-amazon.com/images/I/61GwCV3BfBL._SL75_.jpg", + "https://m.media-amazon.com/images/I/615Aj-qvOSL._SL75_.jpg", + "https://m.media-amazon.com/images/I/61xpdNEL1RL._SL75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/6157JFrGCCL._SL160_.jpg", + "https://m.media-amazon.com/images/I/61Vws0MNp5L._SL160_.jpg", + "https://m.media-amazon.com/images/I/615runZ4PGL._SL160_.jpg", + "https://m.media-amazon.com/images/I/61k89qbVUoL._SL160_.jpg", + "https://m.media-amazon.com/images/I/61GwCV3BfBL._SL160_.jpg", + "https://m.media-amazon.com/images/I/615Aj-qvOSL._SL160_.jpg", + "https://m.media-amazon.com/images/I/61xpdNEL1RL._SL160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/6157JFrGCCL.jpg", + "https://m.media-amazon.com/images/I/61Vws0MNp5L.jpg", + "https://m.media-amazon.com/images/I/615runZ4PGL.jpg", + "https://m.media-amazon.com/images/I/61k89qbVUoL.jpg", + "https://m.media-amazon.com/images/I/61GwCV3BfBL.jpg", + "https://m.media-amazon.com/images/I/615Aj-qvOSL.jpg", + "https://m.media-amazon.com/images/I/61xpdNEL1RL.jpg" + ] + } + }, + "trade_in": null, + "prices": { + "price": { + "value": 62.45, + "currency": "EUR", + "per_unit": null, + "display": "62,45 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": null, + "merchant_id": "A3JWKAKR8XB7XF", + "name": "Amazon.de" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": true, + "free_shipping_eligible": true, + "prime_eligible": true, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv7y%2Bgb%2F3benH1lef5bBgwd%2BjVW%2F%2FmC9A8JClwu0g%2F9aAGodE5DuKYnLIEG00yxFMHefA5fN3K4e0pNK%2FOyhha3Gak7Lq%2BD1r1U%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 131.61, + "currency": "EUR", + "per_unit": null, + "display": "131,61 €" + }, + "lowest_price": { + "value": 62.45, + "currency": "EUR", + "per_unit": null, + "display": "62,45 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 31 + }, + { + "highest_price": { + "value": 99.0, + "currency": "EUR", + "per_unit": null, + "display": "99,00 €" + }, + "lowest_price": { + "value": 78.44, + "currency": "EUR", + "per_unit": null, + "display": "78,44 €" + }, + "condition": { + "condition": "Used", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 2 + } + ] + }, + { + "asin": "B07ZVXCJ2Z", + "parent_asin": null, + "title": "Harry Potter Winter Socken - 1 Paar Kuschelsocken Flauschige - Damen Mädchen Herren Hausschuhsocken mit Rutschfester ABS Sohle und Flauschigem Sherpa-Futter Warm Kuschelig Thermosocken - Größe 36-41", + "url": "https://www.amazon.de/dp/B07ZVXCJ2Z?tag=dw05c-21&linkCode=osi&th=1&psc=1", + "product": { + "features": [ + "✔ WARM UND AUSSEN RUTSCHSICHER --- Alle die ständig kalte Füße haben sollten etwas dagegen tu. Diese dick gestrickte Wintersocken ist durch ihren hohen sherpa anteil sehr angenehm zu tragen und mit einer rutsch festen. Sie können unsere Socken als Geburtstags- und Weihnachtsgeschenk wählen, um Dankbarkeit und Sorge für Ihre Mutter, Freundin, Tochter, Frau auszudrücken.", + "✔ HARRY POTTER ZUBEHÖR --- Harry Potter Official Gryffindor Damen Socken Winter Der Markenname: Harry Potter Qualitätsprodukt Ideal als Geschenk von Warner Bros Entertainment Studios.", + "✔ MIT FLAUSCHIGEM SHERPA-FUTTER --- die kuschelig weiche Socke mit extra sherpa angerauter Innenseite Sie warm halten. Originelle Geschenkideen für Männer und Frauen", + "🌱 PRIME QUALITÄT --- Jedes Paar Socken Damen ist mit den besten Materialien hergestellt, um eine dauerhafte Verwendung zu gewährleisten und um mehrere Wäschen zu überstehen, ohne seinen Charme zu verlieren, um eine dauerhafte Verwendung zu gewährleisten.", + "🎁 PERFEKTES HARRY POTTER GESCHENK --- Eine wunderschöne Geschenkidee für Frauen. Diese Dicken Wintersocken halten super warm und sind angenehm zu tragen. Wir lieben die Gryffindor Farben. Harry Potter Fans, Kinder oder Erwachsene werden diesen Entwurf lieben. Ein tolles Geschenk für einen Geburtstag oder Weihnachten." + ], + "languages": null, + "formats": null, + "pages_count": null, + "color": "Orange", + "unit_count": null, + "size": "Einheitsgröße", + "dimensions": { + "height": { + "value": null, + "unit": null + }, + "length": { + "value": null, + "unit": null + }, + "width": { + "value": null, + "unit": null + } + }, + "weight": { + "value": null, + "unit": null + } + }, + "info": { + "contributors": null, + "manufacturer": null, + "brand": "Harry Potter", + "model": null, + "part_number": null, + "product_group": "Apparel", + "binding": "Textilien", + "is_adult": false, + "audience_rating": null, + "edition": null, + "warranty": null, + "publication_date": null, + "release_date": null, + "external_ids": { + "ean": [ + "5056225437287" + ], + "isbn": null, + "upc": null + } + }, + "images": { + "small": "https://m.media-amazon.com/images/I/51mA2YyGIkL._SL75_.jpg", + "medium": "https://m.media-amazon.com/images/I/51mA2YyGIkL._SL160_.jpg", + "large": "https://m.media-amazon.com/images/I/51mA2YyGIkL.jpg", + "cropped": { + "small": [ + "https://m.media-amazon.com/images/I/51mA2YyGIkL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51auRlS+nYL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51jCCVOcIdL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51VV8lB9YxL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51N9aRjaxvL._AC75_.jpg", + "https://m.media-amazon.com/images/I/51GMI-RPS6L._AC75_.jpg", + "https://m.media-amazon.com/images/I/51ed4kcuQ3L._AC75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51mA2YyGIkL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51auRlS+nYL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51jCCVOcIdL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51VV8lB9YxL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51N9aRjaxvL._AC160_.jpg", + "https://m.media-amazon.com/images/I/51GMI-RPS6L._AC160_.jpg", + "https://m.media-amazon.com/images/I/51ed4kcuQ3L._AC160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51mA2YyGIkL._AC_.jpg", + "https://m.media-amazon.com/images/I/51auRlS+nYL._AC_.jpg", + "https://m.media-amazon.com/images/I/51jCCVOcIdL._AC_.jpg", + "https://m.media-amazon.com/images/I/51VV8lB9YxL._AC_.jpg", + "https://m.media-amazon.com/images/I/51N9aRjaxvL._AC_.jpg", + "https://m.media-amazon.com/images/I/51GMI-RPS6L._AC_.jpg", + "https://m.media-amazon.com/images/I/51ed4kcuQ3L._AC_.jpg" + ] + }, + "variants": { + "small": [ + "https://m.media-amazon.com/images/I/51auRlS+nYL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51jCCVOcIdL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51VV8lB9YxL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51N9aRjaxvL._SL75_.jpg", + "https://m.media-amazon.com/images/I/51GMI-RPS6L._SL75_.jpg", + "https://m.media-amazon.com/images/I/51ed4kcuQ3L._SL75_.jpg" + ], + "medium": [ + "https://m.media-amazon.com/images/I/51auRlS+nYL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51jCCVOcIdL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51VV8lB9YxL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51N9aRjaxvL._SL160_.jpg", + "https://m.media-amazon.com/images/I/51GMI-RPS6L._SL160_.jpg", + "https://m.media-amazon.com/images/I/51ed4kcuQ3L._SL160_.jpg" + ], + "large": [ + "https://m.media-amazon.com/images/I/51auRlS+nYL.jpg", + "https://m.media-amazon.com/images/I/51jCCVOcIdL.jpg", + "https://m.media-amazon.com/images/I/51VV8lB9YxL.jpg", + "https://m.media-amazon.com/images/I/51N9aRjaxvL.jpg", + "https://m.media-amazon.com/images/I/51GMI-RPS6L.jpg", + "https://m.media-amazon.com/images/I/51ed4kcuQ3L.jpg" + ] + } + }, + "trade_in": null, + "prices": { + "price": { + "value": 14.95, + "currency": "EUR", + "per_unit": null, + "display": "14,95 €", + "savings": { + "value": null, + "currency": null, + "per_unit": null, + "display": null, + "percentage": null + } + }, + "pvp": { + "value": null, + "currency": null, + "per_unit": null, + "display": null + }, + "availability": { + "max_order_quantity": null, + "min_order_quantity": 1, + "type": "Now", + "message": "Auf Lager." + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": "New", + "sub_condition_display": null + }, + "merchant": { + "default_shipping_country": "GB", + "merchant_id": "A3EILMNSO2CTEL", + "name": "F & F Stores" + }, + "other": { + "buybox_winner": true, + "loyalty_points": null, + "amazon_fulfilled": true, + "free_shipping_eligible": true, + "prime_eligible": true, + "prime_exclusive": false, + "prime_pantry": false, + "violates_map": false, + "offer_id": "Cbs%2BK1qemv58L5GvBnRjSk%2FSyA5Lz%2BcJPnxeFRs4B4i6Xm%2BnWT8bIHQ09GnQ93p4yfneDfDh3w1dTm%2BtxygZkum4yQWQ5uH%2BS74LCnWOhraY3423FSa2Nj%2F94j%2F%2FzNQMyNgHMasOXCCIs4b%2BrcJbww%3D%3D" + } + }, + "offers_summary": [ + { + "highest_price": { + "value": 14.95, + "currency": "EUR", + "per_unit": null, + "display": "14,95 €" + }, + "lowest_price": { + "value": 14.95, + "currency": "EUR", + "per_unit": null, + "display": "14,95 €" + }, + "condition": { + "condition": "New", + "condition_display": null, + "sub_condition": null, + "sub_condition_display": null + }, + "offer_count": 1 + } + ] + } +]