Best Buy is an electronics retailer that sells consumer electronics in store and online. In addition to it's online services, Best Buy has developed an API for users to retrieve information from their site.
Questions tagged [best-buy-api]
30 questions
0
votes
1 answer
Search by UPC in BestBuy
Since no information was given in their API documentation.... Is it possible to make a search using the BestBuy API, giving as parameter the UPC(barcode) and retrieve information about the product such as price,pictureurl,discounts, etc?

Bashta
- 85
- 10
0
votes
1 answer
Best Buy API tradeInValue is blank
http://api.remix.bestbuy.com/v1/products((type=Game))?format=xml&show=name,sku,platform,salePrice,tradeInValue&pageSize=100&apiKey=MYKEYGOESHERE
I used to run this code with in Excel to return a list of all video games, their sale price, and trade…

user3089987
- 53
- 1
- 7
0
votes
2 answers
Bestbuy Products Api show measures and weight of products?
I've been looking for these attributes in the results but the API does not show it, is it a way to get measures and weight of items?

user2899151
- 1
- 1
0
votes
1 answer
Best Buy Reviews API does not return results newer than 2 days old
The Best Buy Reviews API seems to return results that are at least 2+ days old. Is it possible to force the API to return fresher results?
Here's the call I used: http://api.remix.bestbuy.com/v1/reviews(sku%20in([SKUs]))?apiKey=[API…

David Pinn
- 21
- 1
0
votes
1 answer
Get BestBuy seller's orders using Commerce API
How can I fetch order details of particular seller using BestBuy API? I read the documentation on https://developer.bestbuy.com/ but it seems there ain't anything related to order management using API.
Commerce API…

Vicky Thakor
- 3,847
- 7
- 42
- 67
0
votes
1 answer
Best Buy - Products API problems
I have a problem with BestBuy's Products API. I'm trying to search something like "samsung galaxy s3". I've tried with file_get_contents in my php page. My call is similar to:…
0
votes
1 answer
How can I list which stores have an item in stock?
I'm searching for a particular item that is listed as available for in-store pickup only, but not in my area.
I'd like to use the API to find out which stores do have that item in stock so I can phone a friend that lives in one of those areas and…

coolaj86
- 74,004
- 20
- 105
- 125
0
votes
1 answer
Searching by weight , length , depth etc using the Best Buy API
The Best Buy Search allows to search products specifying weight , depth , length and using < and > operator. For example:
weight<4
However it seems that the API is using alpha sorting rather than actual numeric values comparison for those fields and…

PBK101
- 3
- 1
0
votes
1 answer
Searching products using details.name and details.value using the Best Buy API
The Best Buy Search allows to search products specifying a criterion on details.name and details.value fields.
http://api.remix.bestbuy.com/v1/products(details.name="Processor Speed" & details.value="2.4Ghz")?apiKey=YOURKEY
However details is a…

PBK101
- 3
- 1
0
votes
1 answer
Api is returning unexpected data in bestbuy
I am trying to get the iphone5 search .
This is the url which I am hitting .
http://api.remix.bestbuy.com/v1/products(search=Iphone5)?apiKey=myapi&page=1
And this response is completely different to what I am expecting .I am looking for the same…

burning
- 2,426
- 6
- 25
- 38
0
votes
3 answers
How can I query the Best Buy Remix API w/ jQuery?
Here's the code that I've been trying to work with:
$.getJSON("http://api.remix.bestbuy.com/v1/products(search=" + escape(searchCriteria) + ")?apiKey=" + hhApiKey + "&format=json&callback=?",
function(data) {
if(data.error) {
alert("I'm…
Chris
-1
votes
2 answers
BestBuy API won't query in a loop
I am very new to Javascript and I am trying to utilize BestBuy's api to grab data on a specific sku number every 3 seconds.
The call to the api works as expected on its own but when I move the call inside a while loop, I do not get anything and the…

Pombi
- 1
- 1
-1
votes
1 answer
Does best buy offer a SPARQL endpoint / does it support RDF and/or SPARQL?
There is some mention of support for RDF / SPARQL by best buy (see https://twitter.com/LearningSPARQL/status/294082772836941825). However the page is outdated and i cannot find anything about it in the dev documentation.

rmuller
- 12,062
- 4
- 64
- 92
-2
votes
2 answers
Discount on a price
So this is my code so far but at the end there i am trying to add a discount option. I am not sure how to add it to multiple products. Please let me know how i can improve because i am sort of new to coding.
def best_cost():
while True:
…

Imaginer
- 1
- 1
-3
votes
1 answer
Can I access exact stock count, open box, etc.?
I want to create an app for Best Buy employees which enables them to use their phones to look up item data instead of making them fiddle with the nearest store computer to do that. There doesn't seem to be a method in the Best Buy API to be able to…

Sean
- 7
- 3