This API was built to pull product information and reviews from Newegg. Thanks to bemasher for finding this service.
- Product Search
- Product Detail, Specification, and Reviews
- Product Comparison
- Navigation
- Promotions / Daily Deals
- Easy to use search method
- Easy to use response methods
var search = new SearchQuery() {Keyword = Console.ReadLine()};
var searchResponse = ApiCall.Send<SearchResponse>(search);
if (searchResponse.ProductGroups[0].PageInfo.TotalCount > 0)
{
var item = searchResponse.ProductGroups[0].ProductDeals[0];
var productDetail = new ProductQuery(item.ItemNumber, RequestType.Detail);
var detailResponse = ApiCall.Send<ProductDetailResponse>(productDetail);
}