Best Buy Product API
Scrape Best Buy product data effortlessly and get real-time, accurate results, without worrying about website restrictions.
Last updated
Scrape Best Buy product data effortlessly and get real-time, accurate results, without worrying about website restrictions.
Last updated
To enable this engine, set the engine=bestbuy_async
parameter.
Scraping Best Buy product pages can be challenging due to various anti-scraping measures. Luckily, with the Best Buy API, you only need to send a POST request to our endpoint, and our powerful engine will handle all the complexities, returning the data you need quickly and efficiently.
We will use following URL as an example for this request:
https://ecom.webscrapingapi.com/v1?engine=bestbuy_async&api_key=<YOUR_API_KEY>&type=product
We will use this body for the POST request:
[{"url":"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913"},{"url":"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391"}]
curl --request POST --url "https://ecom.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=bestbuy_async&type=product" --header "Content-Type: application/json" --data "[{"url":"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913"},{"url":"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391"}]"
const http = require("https");
const options = {
"method": "POST",
"hostname": "ecom.webscrapingapi.com",
"port": null,
"path": "/v1?api_key=<YOUR_API_KEY>&engine=bestbuy_async&type=product",
"headers": {
"Content-Type": "application/json"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write("[{\"url\":\"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913\"},{\"url\":\"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391\"}]");
req.end();
import http.client
conn = http.client.HTTPSConnection("ecom.webscrapingapi.com")
payload = "[{\"url\":\"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913\"},{\"url\":\"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391\"}]"
headers = { 'Content-Type': "application/json" }
conn.request("POST", "/v1?api_key=<YOUR_API_KEY>&engine=bestbuy_async&type=product", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://ecom.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=bestbuy_async&type=product",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "[{\"url\":\"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913\"},{\"url\":\"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391\"}]",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://ecom.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=bestbuy_async&type=product"
payload := strings.NewReader("[{\"url\":\"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913\"},{\"url\":\"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391\"}]")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
HttpResponse<String> response = Unirest.post("https://ecom.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=bestbuy_async&type=product")
.header("Content-Type", "application/json")
.body("[{\"url\":\"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913\"},{\"url\":\"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391\"}]")
.asString();
var client = new RestClient("https://ecom.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=bestbuy_async&type=product");
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "[{\"url\":\"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913\"},{\"url\":\"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391\"}]", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://ecom.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=bestbuy_async&type=product")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "[{\"url\":\"https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913\"},{\"url\":\"https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391\"}]"
response = http.request(request)
puts response.read_body
Once you send the POST request with the required parameters, the API will process your request and return a snapshot_id
, which can be used to fetch the results via the Snapshot API.
Once you've submitted a POST request to the Best Buy API and received a snapshot_id
, you can use the Snapshot API to retrieve the processed results. This allows you to fetch data asynchronously once it's ready, ensuring smooth and efficient operation.
We will use following URL as an example of getting results from a snapshot_id
https://ecom.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&snapshot_id=s_m516exisyz3atta8g
When the data is ready, the API will return a JSON response containing the scraped results. Here's an example of the response structure:
{
"0": {
"input": {
"url": "https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391"
},
"url": "https://www.bestbuy.com/site/apple-magic-keyboard-folio-for-ipad-10-9-inch-white/6340391.p?skuId=6340391",
"product_id": "6340391",
"title": "Apple - Magic Keyboard Folio for iPad 10.9-inch - White",
"images": [
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6340/6340391_sd.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6340/6340391_rd.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6340/6340391ld.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6340/6340391cv11d.jpg"
],
"final_price": "$199.00",
"currency": "USD",
"discount": "Save $50",
"initial_price": "$249.00",
"offer_price": "$49.75",
"root_category": "Computers & Tablets",
"breadcrumbs": [
{
"name": "Best Buy",
"url": "https://www.bestbuy.com/"
},
{
"name": "Computers & Tablets",
"url": "https://www.bestbuy.com/site/electronics/computers-pcs/abcat0500000.c?id=abcat0500000"
},
{
"name": "Tablet Accessories",
"url": "https://www.bestbuy.com/site/computers-pcs/ipad-tablet-ereader-accessories/pcmcat309900050001.c?id=pcmcat309900050001"
},
{
"name": "Tablet Cases, Covers & Keyboard Folios",
"url": "https://www.bestbuy.com/site/ipad-tablet-ereader-accessories/tablet-cases-covers-sleeves/pcmcat242000050002.c?id=pcmcat242000050002"
}
],
"rating": 4.6,
"reviews_count": 499,
"questions_count": 34,
"availability": [
{
"availability_name": "Pickup"
},
{
"availability_name": "Shipping",
"availability_value": "2024-12-24T00:00:00.000Z"
}
],
"product_description": "Shop Apple Magic Keyboard Folio for iPad 10.9-inch White at Best Buy. Find low everyday prices and buy online for delivery or in-store pick-up. Price Match Guarantee.",
"features_summary": "The Magic Keyboard Folio is the perfect iPad (10th Generation) companion. It features an incredible typing experience, a built-in trackpad to handle tasks with precision, and a 14-key function row. The versatile two-piece design includes a detachable keyboard and a protective back panel that both attach magnetically to iPad. An adjustable stand offers smooth, continuous viewing. And the Magic Keyboard Folio helps iPad stay protected wherever you go.",
"features": [
"Comfortable typing experience with a scissor mechanism with 1 mm travel.",
"Large click-anywhere trackpad supports Multi‑Touch gestures and the cursor in iPadOS.",
"14-key function row for easy access to shortcuts.",
"Versatile two-piece design provides front and back protection and detachable keyboard.",
"Adjustable stand for flexible viewing angles."
],
"whats_included": [
"Magic Keyboard Folio for iPad 10.9-inch"
],
"q_a": [
{
"question": "does the keyboard come off so i can use it as a normal case??",
"answer": "The keyboard is imbedded in the cover and connected by three small magnets on the spine of the case. It comes on and off easily. But it is also the cover, so when you take it off, there is no cover.",
"answer_date": "2023-10-28T06:46:32.000-05:00",
"is_verified": "true"
},
{
"question": "does the keyboard come off so i can use it as a normal case??",
"answer": "The keyboard does unattach very easily. However, the way the keyboard and matching cover work, you will need a normal case to put your iPad in and out of when you don't want the keyboard attached. The keyboard folio is two separate pieces that magnetically attach.",
"answer_date": "2023-11-17T15:43:30.000-06:00",
"is_verified": "true"
},
{
"question": "does the keyboard come off so i can use it as a normal case??",
"answer": "No it is imbedded in the case. You can close it like a normal case but it does not stay on like a normal case at all. It slips off all the time.",
"answer_date": "2023-11-27T11:12:43.000-06:00"
},
{
"question": "My white keyboard stains easily. How do you clean it?",
"answer": "Use a keyboard cover like this one listed below. You can find on Amazon for a very cheap price, it protects from dirt and stains, even water proof.",
"answer_date": "2024-01-06T07:50:00.000-06:00",
"is_verified": "true"
},
{
"question": "My white keyboard stains easily. How do you clean it?",
"answer": "Just use a Clorox hand wipe, but ring it out first so it’s not dripping *for hard stains) if just kinda fingerprints here and there use simple HOT water on a rung out paper towel and wipe it down well.",
"answer_date": "2024-09-23T21:15:24.000-05:00"
},
{
"question": "Does the keyboard come with lighting?",
"answer": "No, This case/keyboard doesn’t come with lighting.",
"answer_date": "2023-12-17T12:53:04.000-06:00",
"is_verified": "true"
},
{
"question": "Does the keyboard come with lighting?",
"answer": "No",
"answer_date": "2023-12-17T01:51:39.000-06:00",
"is_verified": "true"
},
{
"question": "How much does this keyboard folio weigh?",
"answer": "1.05 pounds",
"answer_date": "2022-11-16T16:26:36.000-06:00",
"is_verified": "true"
},
{
"question": "How much does this keyboard folio weigh?",
"answer": "Very light weight you can hold it with one hand",
"answer_date": "2023-10-13T17:10:03.000-05:00",
"is_verified": "true"
},
{
"question": "Will this product only be in white or will there be a black variant?",
"answer": "So far, only white",
"answer_date": "2022-11-16T16:24:01.000-06:00",
"is_verified": "true"
},
{
"question": "Will this product only be in white or will there be a black variant?",
"answer": "black",
"answer_date": "2023-05-16T10:06:51.000-05:00"
},
{
"question": "Will this product only be in white or will there be a black variant?",
"answer": "This keyboard is only available in white.",
"answer_date": "2022-10-26T02:24:15.000-05:00"
},
{
"question": "Is this key board rechargable or does it require batteries?",
"answer": "The keyboard dose not need batteries and it dose not need a charger it like a magnetic just connected to the ipad",
"answer_date": "2024-12-21T14:20:25.000-06:00",
"is_verified": "true"
}
],
"product_specifications": [
{
"specification_name": "Model Compatibility",
"specification_value": "Apple iPad (10th Generation) 10.9\" 2022"
},
{
"specification_name": "Product Name",
"specification_value": "Magic Keyboard Folio for iPad 10.9-inch"
},
{
"specification_name": "Brand",
"specification_value": "Apple"
},
{
"specification_name": "Model Number",
"specification_value": "MQDP3LL\/A"
},
{
"specification_name": "Color",
"specification_value": "White"
},
{
"specification_name": "Color Category",
"specification_value": "White"
},
{
"specification_name": "Brand Compatibility",
"specification_value": "Apple"
},
{
"specification_name": "Model Compatibility",
"specification_value": "Apple iPad (10th Generation) 10.9\" 2022"
},
{
"specification_name": "Case Style",
"specification_value": "Keyboard folio"
},
{
"specification_name": "Maximum Compatible Display Size",
"specification_value": "10.9 inches"
},
{
"specification_name": "Product Depth",
"specification_value": "10.22 inches"
},
{
"specification_name": "Product Weight",
"specification_value": "0.89 ounces"
},
{
"specification_name": "Manufacturer's Warranty - Parts",
"specification_value": "1 year limited"
},
{
"specification_name": "Manufacturer's Warranty - Labor",
"specification_value": "1 year limited"
},
{
"specification_name": "UPC",
"specification_value": "194253417279"
}
],
"amount_of_stars": [
{
"5_stars": "397",
"4_stars": "45",
"3_stars": "24",
"2_stars": "9",
"1_star": "24"
}
],
"customer_images": [
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/9cc3baca17aeb6aff6a120a7bb9a6878.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/68c0ab2d63708d520d825df5d386387d.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/97c5f8a4e8211d4324dcb6bddc4957b2.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/609fa8952030dda02a9a419fbc94a900.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/35f161b1e7e4edbc726da7371fe9be0b.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/796c8afbabb04055c9e34c84fa2221ad.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/bcdde98fe2dc0da25edeff6357d42539.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/8a0a5ed3d37588741fc3720d2145a5eb.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/8698be56e1c78e866abe3755d887fd34.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/7bfb244a9e353f0fe7d7e83bc11f79dc.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/5c2764ddfd2c4cae1e310ec3e8fa88f8.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/91375e2a394faf098e1a3cddb61e051f.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/16ff2fe22f1bbcdafa23aa7ec1c44f32.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/37ff3c75ba8449cadf1846536be262f6.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/e9fd8d3a9487b27323fabc8739431093.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/8b3258e2a772b60181e1c4c0c3ae991d.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/5274d20736ecb4e0f7b1004880510a50.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/4a18d0b02ab91b7236e5f1b53df5a72f.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/ce5be6e4ef71430374400e0c9bf7e5c5.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/ugc/photos/thumbnail/1ee6447b7d38b667198cb5b361a026ca.jpg"
],
"recommend_percentage": "90",
"timestamp": "2024-12-23T15:13:07.863Z"
},
"1": {
"input": {
"url": "https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913"
},
"url": "https://www.bestbuy.com/site/singsation-freestyle-wireless-karaoke-system-blue/6523913.p?skuId=6523913",
"product_id": "6523913",
"title": "Singsation - FREESTYLE Wireless Karaoke System - Blue",
"images": [
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913_sd.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913_rd.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913ld.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913_bd.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913cv11d.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913cv12d.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913cv14d.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913cv15d.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913cv16d.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913cv17d.jpg",
"https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6523/6523913cv18d.jpg",
"https://pisces.bbystatic.com/prescaled/540/960/image2/BestBuy_US/images/videos/1396973580.jpg"
],
"final_price": "$119.99",
"currency": "USD",
"initial_price": "$119.99",
"offer_price": "$30.00",
"root_category": "Musical Instruments",
"breadcrumbs": [
{
"name": "Best Buy",
"url": "https://www.bestbuy.com/"
},
{
"name": "Musical Instruments",
"url": "https://www.bestbuy.com/site/electronics/musical-instruments/abcat0207000.c?id=abcat0207000"
},
{
"name": "Karaoke",
"url": "https://www.bestbuy.com/site/musical-instruments/karaoke-machine-system/abcat0207005.c?id=abcat0207005"
},
{
"name": "Karaoke Machines",
"url": "https://www.bestbuy.com/site/karaoke-machine-system/karaoke-machines/pcmcat251600050000.c?id=pcmcat251600050000"
}
],
"rating": 4.1,
"reviews_count": 10,
"questions_count": 8,
"hot_offer": [
"Free item with purchase"
],
"availability": [
{
"availability_name": "Pickup",
"availability_value": "2024-01-02T00:00:00.000Z"
},
{
"availability_name": "Shipping",
"availability_value": "2024-12-31T00:00:00.000Z"
}
],
"product_description": "Shop Singsation FREESTYLE Wireless Karaoke System Blue at Best Buy. Find low everyday prices and buy online for delivery or in-store pick-up. Price Match Guarantee.",
"features_summary": "The Singsation Freestyle Rechargeable Wireless All-in-One Karaoke System delivers big-time sound with color light modes and echo control for the ultimate Karaoke party. Perfect for parties, sleepovers, rainy days, or whenever the moment strikes. The Freestyle gives you the power to team up for a duet while moving and dancing freely with no distracting cords. The package includes the speaker, two wireless microphones, and two USB charging cables so you can perform like a pro anywhere. With Singsation, you can be a star!",
"features": [
"Bluetooth 5.0: Connect your smartphone or tablet for thousands of songs\/karaoke videos from YouTube and all your favorite karaoke apps, no CDs needed!",
"Big Sound, Sound effects - air horn and cheers, adjustable echo effects",
"Wireless, rechargeable base unit and 2 wireless microphones",
"Colorful room-effects light globe with various light effects",
"Enjoy your music wirelessly or from the AUX input, USB, or Micro SD music file reader for up to 6 hours of play."
],
"whats_included": [
"Speaker with built-in cradle to hold 2 microphones, 2 wireless microphones, 2 USB charging cables"
],
"q_a": [
{
"question": "What type of power source does the karaoke system use?",
"answer": "This karaoke system can be powered by plugging it into an outlet or by using the battery."
},
{
"question": "What are the dimensions of the karaoke system?",
"answer": "The Singsation Freestyle Wireless Karaoke System has a height of 7.15 inches, a depth of 4.45 inches, and a width of 9.84 inches."
},
{
"question": "What is the warranty period for the karaoke system?",
"answer": "The manufacturer's warranty for parts and labor on the karaoke system is 90 days."
},
{
"question": "How many microphones are included with the karaoke system?",
"answer": "This karaoke system comes with two wireless microphones so you can sing with a friend."
},
{
"question": "Can the karaoke system be used for duets?",
"answer": "The Singsation Freestyle Karaoke System allows you to team up with a partner for a duet."
},
{
"question": "Does the karaoke system have any built-in lighting features?",
"answer": "The Singsation Freestyle Karaoke System has color light modes for an ultimate karaoke party experience."
},
{
"question": "How does the karaoke system handle song loading?",
"answer": "This karaoke system uses a USB flash drive for loading songs."
}
],
"product_specifications": [
{
"specification_name": "Product Name",
"specification_value": "FREESTYLE Wireless Karaoke System"
},
{
"specification_name": "Brand",
"specification_value": "Singsation"
},
{
"specification_name": "Model Number",
"specification_value": "SPKAW10BL"
},
{
"specification_name": "Color",
"specification_value": "Blue"
},
{
"specification_name": "Color Category",
"specification_value": "Blue"
},
{
"specification_name": "Song Load Type",
"specification_value": "USB, Memory card, Other"
},
{
"specification_name": "Speaker Type",
"specification_value": "Built-in"
},
{
"specification_name": "Number Of Speakers",
"specification_value": "1"
},
{
"specification_name": "Number of Microphones Included",
"specification_value": "2"
},
{
"specification_name": "Number Of USB Port(s)",
"specification_value": "1"
},
{
"specification_name": "Product Height",
"specification_value": "7.15 inches"
},
{
"specification_name": "Product Width",
"specification_value": "9.84 inches"
},
{
"specification_name": "Product Depth",
"specification_value": "4.45 inches"
},
{
"specification_name": "Product Weight",
"specification_value": "2.9983 pounds"
},
{
"specification_name": "Power Source",
"specification_value": "Plug-in\/Battery-powered"
},
{
"specification_name": "Battery Size",
"specification_value": "Other"
},
{
"specification_name": "Manufacturer's Warranty - Parts",
"specification_value": "90 days"
},
{
"specification_name": "Manufacturer's Warranty - Labor",
"specification_value": "90 days"
},
{
"specification_name": "UPC",
"specification_value": "044476151095"
}
],
"amount_of_stars": [
{
"5_stars": "7",
"3_stars": "1",
"2_stars": "1",
"1_star": "1"
}
],
"customer_images": [
"https:\/\/pisces.bbystatic.com\/image2\/BestBuy_US\/ugc\/photos\/thumbnail\/4fc2f3f2934ca5d2383088391e04fd34.jpg",
"https:\/\/pisces.bbystatic.com\/image2\/BestBuy_US\/ugc\/photos\/thumbnail\/497f0772b3c40e2d32ddb05bbcec9b07.jpg"
],
"deals_on_realated_items": [
"Karaoke Machines deals",
"Outlet Deals",
"Top Deals"
],
"recommend_percentage": "70",
"timestamp": "2024-12-23T15:13:06.836Z"
}
}