Amazon Product
Web Scraping API Amazon Product Target
The amazon_product target is built to obtain Amazon Product pages.
Useful Links
- This target is available with Web API Advanced plans.
- Real-time and Asynchronous integration methods are available for this template.
- Batch requests are also supported.
Input Parameters
Request parameters available for the Amazon Product target:
Parameter | Type | Required | Description |
|---|---|---|---|
| string | ✅ | Target type must be set to |
| string | ✅ | A 10-character Amazon Product ASIN code. |
| string |
| |
| boolean | Automatically parses results when set to | |
| string | Set the delivery location to use when submitting the query. Read more. | |
| string | Specify top-level domain. Read more. | |
| string | Set the value to change your Amazon web page interface language. Read more. | |
| string | Specify device type and browser. Read more. | |
| boolean | To get accurate buybox/pricing data, set this parameter to | |
| boolean | Set to | |
| boolean | Set to |
Request examples
curl --request 'POST' \
--url 'https://scraper-api.decodo.com/v2/scrape' \
--header 'Accept: application/json' \
--header 'Authorization: Basic TOKEN VALUE' \ // update with your authorization token
--header 'Content-Type: application/json' \
--data '
{
"target": "amazon_product",
"query": "B09H74FXNW",
"parse": true
}
'
const scrape = async() => {
const response = await fetch("https://scraper-api.decodo.com/v2/scrape", {
method: "POST",
body: JSON.stringify({
"target": "amazon_product",
"query": "B09H74FXNW",
"parse": true
}),
headers: {
"Content-Type": "application/json",
"Authorization": "Basic TOKEN VALUE" // update with your authorization token
},
}).catch(error => console.log(error));
console.log(await response.json())
}
scrape()
import requests
url = "https://scraper-api.decodo.com/v2/scrape"
payload = {
"target": "amazon_product",
"query": "B09H74FXNW",
"parse": True
}
headers = {
"accept": "application/json",
"content-type": "application/json",
"authorization": "Basic TOKEN VALUE" # update with your authorization token
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Output
Descriptions for fields in the parsed JSON results section are provided in the table below. Keep in mind that the amount of fields can vary according to the provided search query.
| Results key | Description |
|---|---|
ads | An array of sponsored results with their detailed information. |
url | URL to the Amazon Product page. |
asin | Amazon's unique identifier for products, known as the Amazon Standard Identification Number. |
page | The page number. |
brand | The product's brand. |
price | The product's price. |
stock | Specifies the stock. |
title | The product's title. |
buybox | An array of product's pricing with detailed information. |
deal_type | Specifies the type of promotional offer. |
coupon | Shows available digital discounts. |
discount_end | Specifies the final date a promotional discount for a product remains valid. |
images | An array of URLs representing the product images. |
rating | The product's rating. |
reviews | An array of reviews along with their detailed information. |
category | An array of details about the Amazon product category. |
currency | The currency used to represent the price. |
delivery | An object of available delivery options. |
page_type | The type of Amazon page. |
price_sns | Indicates whether the product is part of the 'Subscribe & Save' program. |
store_url | The URL linking to the seller's store page. |
variation | An array of details about the Amazon product variations. |
has_videos | Specifies whether the product includes any videos. |
sales_rank | An array of details about the ranking position of an Amazon product within its category, determined by sales performance. |
asin_in_url | Amazon Standard Identification Number (ASIN) from the product URL. |
description | The product description, extracted from the 'Product Description' section. |
parent_asin | The primary identifier assigned to a product family on Amazon, which connects related variations under a main listing. |
price_upper | The maximum price value. |
pricing_str | A string that contains the pricing details of a product. |
pricing_url | The URL used to fetch the offer listing. |
manufacturer | The manufacturer's name. |
price_buybox | The product price displayed in the buybox. |
product_name | The product's name. |
bullet_points | The bullet points extracted from the 'About This Product' section. |
price_initial | The product's original price before any discounts. |
pricing_count | The total number of offers available for the product. |
reviews_count | The total number of reviews for the product. |
sns_discounts | An array of discounts offered through the 'Subscribe & Save' program. |
developer_info | Details about the developer or manufacturer. |
price_shipping | The shipping cost. |
product_details | An object of details about the product. |
featured_merchant | An object of information about the primary seller or vendor featured for the Amazon product. |
is_prime_eligible | Indicates if the product qualifies for Amazon Prime. |
review_ai_summary | AI-generated summary for product. |
answered_questions_count | The total count of answered customer questions about the product. |
rating_stars_distribution | An array of product ratings with their detailed information. |
is_addon_item | Specifies if a product can only be purchased as part of orders that meet a minimum value requirement. |
amazon_choice | Specifies whether the product carries the Amazon's Choice badge. |
Response Example
{
"results": {
"ads": [
{
"pos": 1,
"asin": "B08T1GK3DL",
"type": "organic_also_viewed",
"price": 23.99,
"title": "targeal Gaming Headset with Microphone - for PC, PS4, PS5, Switch, Xbox One, Xbox Series X|S - 3.5mm Jack Gamer Headphone wit",
"images": [
"data:image/jpeg;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
],
"rating": 4.2,
"location": "carousel",
"price_upper": 23.99,
"reviews_count": 42,
"is_prime_eligible": true
},
{
"pos": 2,
"asin": "B01H6GUCCQ",
"type": "organic_also_viewed",
"price": 19.99,
"title": "BENGOO G9000 Stereo Gaming Headset for PS4 PC Xbox One PS5 Controller, Noise Cancelling Over Ear Headphones with Mic, LED Lig",
"images": [
"data:image/jpeg;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
],
"rating": 4.3,
"location": "carousel",
"price_upper": 19.99,
"reviews_count": 43,
"is_prime_eligible": true
},
{
"pos": 3,
"asin": "B09FJK1JTQ",
"type": "organic_also_viewed",
"price": 19.99,
"title": "Tatybo Gaming Headset for PS5 PS4 Xbox ONE Switch PC with Noise Cancelling Over-Ear Stereo Bass Surround Sound Gaming Headpho",
"images": [
"data:image/jpeg;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
],
"rating": 4.3,
"location": "carousel",
"price_upper": 19.99,
"reviews_count": 43,
"is_prime_eligible": true
},
{
"pos": 4,
"asin": "B09FJK1JTQ",
"type": "organic_also_viewed",
"price": 19.99,
"title": "Tatybo Gaming Headset for PS5 PS4 Xbox ONE Switch PC with Noise Cancelling Over-Ear Stereo Bass Surround Sound Gaming Headphone -Camo",
"images": [
"https://images-na.ssl-images-amazon.com/images/I/61n8J+Fw+hL._AC_UL165_SR165,165_.jpg"
],
"rating": 0,
"location": "carousel",
"price_upper": 19.99,
"reviews_count": 43,
"is_prime_eligible": false
},
{
"pos": 5,
"asin": "B07VFGQ7BC",
"type": "organic_also_viewed",
"price": 17.99,
"title": "PHOINIKAS Gaming Headset for PS4, Xbox One, PC, Laptop, Mac, Nintendo Switch, 3.5MM PS4 Stereo Headset Over Ear Headphones with Noise-Cancelling Mic, Bass Surround - Camo",
"images": [
"https://images-na.ssl-images-amazon.com/images/I/617AAEmjdbL._AC_UL165_SR165,165_.jpg"
],
"rating": 0,
"location": "carousel",
"price_upper": 17.99,
"reviews_count": 42,
"is_prime_eligible": false
},
{
"pos": 6,
"asin": "B0B4RZNJG9",
"type": "organic_also_viewed",
"price": 20.99,
"title": "Gaming Headset with Microphone, Gaming Headphones for PS4 PS5 Xbox One PC with LED Lights, PlayStation Headset with Noise Reduction 7.1 Surround Sound Over-Ear and Wired 3.5mm Jack (Green)",
"images": [
"https://images-na.ssl-images-amazon.com/images/I/81S9hokCyuL._AC_UL165_SR165,165_.jpg"
],
"rating": 0,
"location": "carousel",
"price_upper": 20.99,
"reviews_count": 43,
"is_prime_eligible": false
},
{
"pos": 7,
"asin": "B0B1X2PJLV",
"type": "organic_also_viewed",
"price": 19.99,
"title": "TIANHOO Wireless Controller Compatible with PS4/Pro/Slim, with Vibration Feedback, Motion Sensing, Touchpad, Light Bar, Share, Speaker, 3.5mm Headphone Jack (Graffiti)",
"images": [
"https://images-na.ssl-images-amazon.com/images/I/8117BlFelDL._AC_UL165_SR165,165_.jpg"
],
"rating": 0,
"location": "carousel",
"price_upper": 19.99,
"reviews_count": 43,
"is_prime_eligible": false
},
{
"pos": 8,
"asin": "B01H6GUCCQ",
"type": "organic_also_viewed",
"price": 19.99,
"title": "BENGOO G9000 Stereo Gaming Headset for PS4 PC Xbox One PS5 Controller, Noise Cancelling Over Ear Headphones with Mic, LED Light, 7.1 Surround Sound, Soft Memory Earmuffs for Nintendo Xbox Series X|S",
"images": [
"https://images-na.ssl-images-amazon.com/images/I/61CGHv6kmWL._AC_UL165_SR165,165_.jpg",
"https://m.media-amazon.com/images/I/01GK70BG4uL.svg",
"https://m.media-amazon.com/images/I/019h+CPo68L.svg",
"https://m.media-amazon.com/images/I/61sxI+4PZlL._SS180_.png",
"https://m.media-amazon.com/images/I/61sxI+4PZlL._SS180_.png",
"https://m.media-amazon.com/images/I/21AGu0JFvKL.svg"
],
"rating": 0,
"location": "carousel",
"price_upper": 19.99,
"reviews_count": 43,
"is_prime_eligible": false
},
{
"pos": 9,
"asin": "B08G84VLJY",
"type": "organic_also_viewed",
"price": 15.69,
"title": "Kikc PS4 Gaming Headset with Mic for Xbox One, PS5, PC, Mobile Phone and Notebook, Controllable Volume Gaming Headphones with Soft Earmuffs for Kid",
"images": [
"https://images-na.ssl-images-amazon.com/images/I/51xA9nyK9CL._AC_UL165_SR165,165_.jpg"
],
"rating": 0,
"location": "carousel",
"price_upper": 15.69,
"reviews_count": 42,
"is_prime_eligible": false
},
{
"pos": 10,
"asin": "B0CLYH2DRN",
"type": "organic_also_viewed",
"price": 28.49,
"title": "acer Wireless Gaming Headset, PS5 Headset with 2.4GHz for Ps5, Ps4, PC, Switch, Bluetooth 5.3 + 100Hrs Gaming Headphones with Noise Canceling Mic for Laptop, Mobile, Mac, 50mm Drivers (Red)",
"images": [
"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%' width='100%' preserveAspectRatio='none' /%3E",
"https://m.media-amazon.com/images/I/41PYVHnS8ZL._AC_SR100,100_QL65_.jpg"
],
"rating": 4.2,
"location": "carousel",
"price_upper": 49.99,
"reviews_count": 42,
"is_prime_eligible": false
},
{
"pos": 11,
"asin": "B0B4B2HW2N",
"type": "organic_also_viewed",
"price": 33.99,
"title": "Gtheos 2.4GHz Wireless Gaming Headset for PS5, PS4 Fortnite & Call of Duty/FPS Gamers, PC, Nintendo Switch, Bluetooth 5.3 Gaming Headphones with Noise Canceling Mic, Stereo Sound, 40+Hr Battery -White",
"images": [
"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%' width='100%' preserveAspectRatio='none' /%3E",
"https://m.media-amazon.com/images/I/41ATFDVlDML._AC_SR100,100_QL65_.jpg"
],
"rating": 4.2,
"location": "carousel",
"price_upper": 49.99,
"reviews_count": 42,
"is_prime_eligible": false
},
{
"pos": 12,
"asin": "B0DYWJJRDV",
"type": "organic_also_viewed",
"price": 39.99,
"title": "Turtle Beach Recon 70 Wired Gaming Headset - Licensed for Nintendo Switch 2, Nintendo Switch/Lite/OLED Model, Flip-to-Mute Mic, Adjustable, Lightweight, On-Ear Controls, 40mm Drivers, Black and White",
"images": [
"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%' width='100%' preserveAspectRatio='none' /%3E",
"https://m.media-amazon.com/images/I/31eKlnu1voL._AC_SR100,100_QL65_.jpg"
],
"rating": 4.4,
"location": "carousel",
"price_upper": 39.99,
"reviews_count": 44,
"is_prime_eligible": false
},
{
"pos": 13,
"asin": "B0C4ND25FT",
"type": "organic_also_viewed",
"price": 34.19,
"title": "FIFINE Wired Gaming Headset, USB Headphone with 7.1 Surround Sound, Detachable Microphone, Control Box, 3.5mm Headphones Jack, Over-Ear Headset for PC/PS5/Xbox/Switch, Black-AmpliGame H9",
"images": [
"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%' width='100%' preserveAspectRatio='none' /%3E",
"https://m.media-amazon.com/images/I/41TSn76LbZL._AC_SR100,100_QL65_.jpg"
],
"rating": 4.3,
"location": "carousel",
"price_upper": 37.99,
"reviews_count": 43,
"is_prime_eligible": false
},
{
"pos": 14,
"asin": "B01H6GUCCQ",
"type": "organic_also_viewed",
"price": 19.99,
"title": "BENGOO G9000 Stereo Gaming Headset for PS4 PC Xbox One PS5 Controller, Noise Cancelling Over Ear Headphones with Mic, LED Light, 7.1 Surround Sound, Soft Memory Earmuffs for Nintendo Xbox Series X|S",
"images": [
"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%' width='100%' preserveAspectRatio='none' /%3E",
"https://m.media-amazon.com/images/I/51q0meZK6WL._AC_SR100,100_QL65_.jpg"
],
"rating": 4.3,
"location": "carousel",
"price_upper": 29.99,
"reviews_count": 43,
"is_prime_eligible": false
}
],
"url": "https://www.amazon.com/dp/B09H74FXNW?language=en_US",
"asin": "B09H74FXNW",
"page": 1,
"brand": "FEIYING",
"price": 0,
"stock": "Currently unavailable. We don't know when or if this item will be back in stock.",
"title": "FEIYING Gaming Headset with Microphone, Gaming Headphones Stereo 7.1 Surround Sound PS4 Headset 50mm Drivers, 3.5mm Audio Jack Over Ear Headphones Wired for PC Switch PlayStation Xbox PS5 Laptop",
"buybox": [
{
"price": -1,
"stock": "Currently unavailable. We don't know when or if this item will be back in stock. Delivering to Atlanta 30301 - Update location Add to List Added to Unable to add item to List. Please try again. Sorry, there was a problem. There was an error retrieving your Wish Lists. Please try again. Sorry, there was a problem. List unavailable."
}
],
"coupon": "",
"images": [
"https://m.media-amazon.com/images/I/71+jTaVbHxL._AC_SL1450_.jpg",
"https://m.media-amazon.com/images/I/717j7kvOdKL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/71NeARy+VbL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/71SdCRi6X7L._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/715HzbVlalL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/71AYCkPs1eL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/71ObD+hKa8L._AC_SL1500_.jpg"
],
"rating": 4.2,
"reviews": [
{
"id": "R10HQLONMXNE7F",
"title": "5.0 out of 5 stars Great starter headset !!",
"author": "Kenzie Davis",
"rating": 5,
"content": "I’ve had for over a year and they still work! Was my first headset and they were super easy to figure out everything you can adjust everything to your liking even the volume and how loud u want to hear your friends over the game. Now they are a little bulky so be warned! But definitely recommend",
"timestamp": "Reviewed in the United States October 1, 2025",
"profile_id": "AGMDTAWJNDT3CRLKG6ZSMTNCDM4A",
"is_verified": true,
"review_from": "Top reviews from the United States"
},
{
"id": "R1ZW7DI6FWP46D",
"title": "5.0 out of 5 stars Great quality all the way around!",
"author": "Jodi Fissel",
"rating": 5,
"content": "For the price of this I was worried how well it would really work. To my surprise it’s like a top of the line product. Works better than I expected it to. The cord is longer than some but that’s what I needed for my set up. They also give a cord to hook it up to your pc if you are a pc gamer rather than a console gamer so it’s a win win for everyone. The ear pieces are bigger than I expected but I like this as it actually slows the noise cancellation to actually work. You can’t hear someone screaming at you for a long period of time. The sound quality is amazing considering this isn’t one of the best known brands out there. Usually you have to pay more money to get good quality. This however is not the case. Been extremely satisfied since receiving this and has been used on a daily basis for about a month now with no issues. The mouthpiece to talk into you can adjust it more than you think it’s made of this bendy rubber material that allows you to bend it inwards or outwards to make your voice clearer on the receiving end. Most models do not offer this so this is a real welcomed bonus! I highly recommend this product. You can wear the headset for an extended period of time like a few hours and it not give you a headache or earache. Look no further this is the best headset out of at least a dozen that I’ve bought and used.",
"timestamp": "Reviewed in the United States August 2, 2022",
"profile_id": "AGJZZYTRBVK2ZVXBEMHIXXB3MMIA",
"is_verified": true,
"review_from": "Top reviews from the United States",
"helpful_count": 4
},
{
"id": "R3Q5N9DFQOYO8V",
"title": "5.0 out of 5 stars Very Nice Gaming Headset with Microphone",
"author": "Zane",
"rating": 5,
"content": "Don't want to pay more than $100 to buy a expensive headset since I have lots of headset already. I am really happy to choose this camo style gaming headsets with microphonePROS:1. The headset provides good sound for gaming purposes and are comfortable to wear. Don't worry the fybric earcup because they are compartable than you think. The mic boom seems to be solid and rotates up and down well.2. There's a lot going on here with a long 3.5mm audio cable, a usb cable to power the lights and a plastic housing to control volume. Mic switch and headphone volume controls are cord mounted a convenient length down from the headset.3.People used to complain that I sounded like I was in a tin can and they could hear the HVAC blower with my laptop mic, now all they hear is me! I tested it with a voice recorder app, and I sound like me again rather than me on a crappy speakerphone on a freight train. The bass response of the headphones is great too, makes music and games alike come alive4. This headset is the most comfortable I’ve ever had. I work 10-12 hours a day and it’s hard finding comfortable headsets to last that long. My ears usually ache by the end of the day but not with these, I can’t even tell I’ve had them on.5. Finally the Camo style is really speical and cool. I like the understated elegance6. A Y-style spliiter adapter is included to split a plug to one voice jack and one mic jack.7. The cord is super long, very convenient for me.CONS:1. As the product page said, the USB plug is only for light, note it.Pretty gaming headset for me. Recommanded to buy it.",
"timestamp": "Reviewed in the United States January 15, 2022",
"profile_id": "AGL4NMNM7VTI7HSDO4QBS56HD6JQ",
"is_verified": true,
"review_from": "Top reviews from the United States",
"helpful_count": 24
},
{
"id": "R11Q07JV1F53GZ",
"title": "4.0 out of 5 stars Great price, decent headset",
"author": "Ryan Mihelich",
"rating": 4,
"content": "Found this headset browsing and after reading many of the reviews i thought i’d give thema try, for $20 seriously why not. They are replacing my astros A10’s which were fantastic for well over a year the mic was just going out. Sound quality from these compared to the A10’s is not even close and you can definitely tell they are lower quality in that sense but again $20 take it or leave it. Mic sounds great according to my gaming buds, plugged directly into xbox controller and worked immediately, usb has to be plugged in for lights to work which isn’t a big deal to me. Over all feel and look compared to the astro A10’s is very bulky, they don’t feel cheap though, the adjuster is firm and ear pads are pretty comfy after a few hours of use, mic boom is stiff to pull down or push up which is nice it keeps its place, volume control wheel is a little hard to use and get use to but overall all decent, mic mute switch right next to volume wheel is easy to use and nice having as the astro a10’s you have to flip mic up to mute and the reason why i think the mic went out on mine, noise cancellation isn’t the best i can hear a small fan that’s about 6’ away over gaming sounds with headset on, comes with dual splitter for whatever type of audio controller or system you use. Over all if you’re looking for high quality sound and the best material this obviously isn’t it, for $20 you honestly would be joking to expect that BUT for $20 this head set is very decent, for kids, beginners, or someone just on a budget i’d definitely recommend this headset any day of the week. They definitely surpassed my expectations",
"timestamp": "Reviewed in the United States July 10, 2022",
"profile_id": "AFCU565PFDNBOHCHGXVCNYPIGXMQ",
"is_verified": true,
"review_from": "Top reviews from the United States",
"helpful_count": 16
},
{
"id": "R1Q3KM1HTP09XT",
"title": "5.0 out of 5 stars Gaming headset",
"author": "marva graham",
"rating": 5,
"content": "When these were first delivered I was so excited to give them to my 10 yr old grandson. He love playing video games and when I would be over he would play and others he played with would complain they couldn’t hear him. So when I found something I could afford and make my grandson happy. That was awesome. They came the end of May and today I was visiting and seen his headphones weren’t on him. He told me that they quit working. That he has had to tape up the plug area every since he had gotten them.I was looking to see how long the warranty was and it was 30 days. BOO!! This is not the way to get repeat customers. My grandson is the youngest and needs his headset to be able to play his games. Home life isn’t the best since my 14 yr old grandson had been diagnosed in December with a rare cancer. So the days are pretty much just doing what is needed for his older brother.It would be nice to hear from the company or even a new pair!",
"timestamp": "Reviewed in the United States July 30, 2022",
"profile_id": "AHSRLW3RA5G5544KHO4KLPF26CDQ",
"is_verified": true,
"review_from": "Top reviews from the United States"
},
{
"id": "R2GMTM2I0GODZT",
"title": "Present",
"author": "Shar",
"rating": 5,
"content": "Nephew loves them, I got aunty bonus points 🤣👍",
"timestamp": "Reviewed in the United Kingdom January 5, 2025",
"is_verified": true,
"review_from": "Top reviews from other countries"
},
{
"id": "R2OYMWMQHETMQ0",
"title": "Impecable quality",
"author": "Zarand",
"rating": 5,
"content": "Great quality heat set for the price. USB and 3.5mm jack. Great for Gaming, phone calls and music.",
"timestamp": "Reviewed in Australia September 3, 2024",
"is_verified": true,
"review_from": "Top reviews from other countries"
},
{
"id": "R34D9CYMAD7FIR",
"title": "Good quality",
"author": "Mr. Khan",
"rating": 5,
"content": "\"FEIYING Gaming Headset delivers exceptional sound quality, clear microphone communication, and comfort for extended gaming sessions. Its durable construction ensures longevity, making it a worthwhile investment for gamers of all levels. Highly recommended for an immersive gaming experience.\"",
"timestamp": "Reviewed in Canada March 16, 2024",
"is_verified": true,
"review_from": "Top reviews from other countries"
},
{
"id": "R4JBE0LIHD5NQ",
"title": "Good headphones, nice sound quality, comfortable, few small personal issues",
"author": "Matt & Mel",
"rating": 5,
"content": "I like these headphones alot, they are comfortable to wear and not heavy, the sound quality is Awesome!Sure they don't sound as good as $200 headphones but they also cost 1/8 that price! These things Bang for the price, sound good, clear, good bass, no complaints at all, and when ya plug the USB in they even light up!",
"timestamp": "Reviewed in Canada November 4, 2023",
"is_verified": true,
"review_from": "Top reviews from other countries"
},
{
"id": "R1KR6A6F97OQXI",
"title": "Arrived when they said.",
"author": "Jennifer",
"rating": 4,
"content": "This was a gift which was greated by my granddaughter with the word cool. She loved it.",
"timestamp": "Reviewed in the United Kingdom January 4, 2024",
"is_verified": true,
"review_from": "Top reviews from other countries"
}
],
"category": [
{
"ladder": [
{
"url": "/computer-video-games-hardware-accessories/b/ref=dp_bc_1?ie=UTF8&node=468642",
"name": "Video Games"
},
{
"url": "/Mac-Games/b/ref=dp_bc_2?ie=UTF8&node=229647",
"name": "Mac"
},
{
"url": "/Mac-Accessories/b/ref=dp_bc_3?ie=UTF8&node=318812011",
"name": "Accessories"
},
{
"url": "/Mac-Game-Headsets/b/ref=dp_bc_4?ie=UTF8&node=405593011",
"name": "Headsets"
}
]
}
],
"currency": "USD",
"delivery": [],
"page_type": "Product",
"price_sns": 0,
"store_url": "/stores/BettergamesBetterlife/page/C0B04C10-3070-410C-B43F-2BEEAEA03328?lp_asin=B09H74FXNW&ref_=ast_bln",
"variation": [],
"has_videos": true,
"sales_rank": [
{
"rank": 19290,
"ladder": [
{
"url": "/gp/bestsellers/videogames/ref=pd_zg_ts_videogames",
"name": "Video Games"
}
]
},
{
"rank": 62,
"ladder": [
{
"url": "/gp/bestsellers/videogames/405593011/ref=pd_zg_hrsr_videogames",
"name": "Mac Game Headsets"
}
]
},
{
"rank": 3519,
"ladder": [
{
"url": "/gp/bestsellers/videogames/318813011/ref=pd_zg_hrsr_videogames",
"name": "PC Accessories"
}
]
}
],
"asin_in_url": "B09H74FXNW",
"description": "Firstly, please check the interface is plugged in devices solidly. Second, if it is still not working, please contact with us.\nPlease do check with the same procedure as the aboveabove question.\nAll headset with 3.5mm interface in the market cannot directly be used for Xbox one. You need an adapter for normal use on Xbox one.",
"parent_asin": "B0DF2CGBCY",
"price_upper": 0,
"pricing_str": "",
"pricing_url": "https://www.amazon.com/gp/offer-listing/B09H74FXNW?startIndex=0",
"manufacturer": "BettergamesBetterlife",
"price_buybox": -1,
"product_name": "FEIYING Gaming Headset with Microphone, Gaming Headphones Stereo 7.1 Surround Sound PS4 Headset 50mm Drivers, 3.5mm Audio Jack Over Ear Headphones Wired for PC Switch PlayStation Xbox PS5 Laptop",
"bullet_points": "Immersive Stereo - Gaming headset with microphone is 7.1 Surround Sound from our professional gaming headsets, outfitted with 50mm neodymium magnet driver, gives vivid and clear sound field, deep bass. Accurate positional audio across any game environment, our gaming headphones with microphone help you get better performance in game, .ps4 games, ps5 games, xbox one games, wii games, etc.\nAll-day Comfort - Extremely light design for all-day wearing, gaming headset are padded with breathable and durable protein soft memory foam cushions, preventing overheating and pressure build-up and pc gaming headset is built with adjustable headband. A must-have PC headsets, xbox headset, ps4 headset, every gamer will enjoy with this wired headphones.\n360° Noise Cancelling Mic - 160° retractable, 360° omnidirectionally rotatable sensitive microphone, premium noise cancellation, sound localisation, this gaming headset pc helps pick up sound quickly, eliminate unwanted noise from environment, deliver messages clearly during gameplay. Adjustable microphone can be swivelled to the right position at any time.\nIn-line Audio Controls - This PC game headsets have an volume control wheel and mic mute switch on the gaming headset ps4 with microphone for quick and convenient adjustments. High tensile strength, anti-entanglement braided USB cable prevents the ps4 headset with mic cable from chaos, and help easily control the volume or one-key microphone mute.\nUniversally Compatible - xbox headphones wired Support PlayStation 4, New Xbox One, PC, Nintendo 3DS, Laptop, PSP, Tablet, iPad, Computer, Mobile Phone. Please note you need an extra Microsoft Adapter (Not Included) when this xbox one headset connect with an old version Xbox One controller, Sega Genesis.\nNote 1: An additional adapter is required for use with xbox one, which is not included.\nNote 2: Please check your mic switch is on before use it.",
"price_initial": 0,
"pricing_count": 1,
"reviews_count": 4732,
"sns_discounts": [],
"developer_info": [],
"price_shipping": 0,
"product_details": {
"asin": "B09H74FXNW",
"material": "Leather",
"model_name": "K5MC",
"unit_count": "1 Count",
"item_weight": "1.15 pounds",
"control_type": "Volume Control",
"manufacturer": "FEIYING",
"cable_feature": "USB Port for RGB light; Audio/Mic Splitter Adapter for speaking and listening",
"noise_control": "Sound Isolation",
"control_method": "Remote",
"earpiece_shape": "Over Ear",
"headphones_jack": "3.5 mm Jack",
"number_of_items": "1",
"special_feature": "Android, Lightweight, Microphone Included, Noise Cancellation, Retractable cord, Volume Control, iOS",
"customer_reviews": "4.2 4.2 out of 5 stars 4,732 ratings 4.2 out of 5 stars",
"audio_driver_size": "5E+1 Millimeters",
"audio_driver_type": "Dynamic Driver",
"best_sellers_rank": "#19,290 in Video Games (See Top 100 in Video Games) #62 in Mac Game Headsets #3,519 in PC Accessories",
"item_model_number": "K5MC",
"compatible_devices": "Gaming Consoles",
"package_dimensions": "9.45 x 7.52 x 4.72 inches",
"included_components": "Cable, Gaming headset, Operating instructions",
"date_first_available": "August 25, 2021",
"age_range_description": "all ages",
"input_device_interface": "Audio jack",
"connectivity_technology": "Wired",
"specific_uses_for_product": "Movies and Gaming",
"wireless_communication_technology": "Wired"
},
"featured_merchant": [],
"is_prime_eligible": true,
"parse_status_code": 12000,
"review_ai_summary": "Customers find this gaming headset to be of good quality, comfortable with sound isolating pads, and effective for both PS and PC gaming. The noise cancellation works well, and they consider it good value for money, particularly noting its 7.1 surround sound capabilities. The microphone receives mixed reviews - while some find it crystal clear, others report it failing.",
"answered_questions_count": 0,
"rating_stars_distribution": [
{
"rating": 5,
"percentage": 66
},
{
"rating": 4,
"percentage": 14
},
{
"rating": 3,
"percentage": 8
},
{
"rating": 2,
"percentage": 4
},
{
"rating": 1,
"percentage": 8
}
]
},
"errors": [],
"status_code": 12000,
"task_id": "7396909339061028865"
}Support
Still can't find an answer? Want to say hi? We take pride in our 24/7 customer support. Alternatively, you can reach us via our support email at [email protected].
Updated about 21 hours ago