Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grab item prices from newegg

Ok, i need to get the prices of items from newegg.com. I'm an affiliate with them and i have permission.

I want to get the prices using php scripts and then insert them into a template and save the page.

How do i get the prices, i tried cURL but it's really confusing.

Any help is appreciated.

http://www.newegg.com/Product/Product.aspx?Item=N82E16814150506&cm_sp=ProductSpotlight--14-150-506--07112011

That's the item i tried doing it with.

like image 722
Bryan Avatar asked Feb 23 '23 15:02

Bryan


1 Answers

Read this post: http://www.bemasher.net/archives/1002

In that post it tells you to do:
http://www.ows.newegg.com/Products.egg/{Item Number}/Specification

So in your case go to http://www.ows.newegg.com/Products.egg/N82E16814150506/Specification to get all the information you need.

like image 185
Naftali Avatar answered Feb 26 '23 05:02

Naftali