This API was built to pull product information from Walmart's Open API. Requires a valid apiKey added to the app.config file Documentation is available at Walmart Labs.
- Product Search
- Product Lookup
- Taxonomy
- Data Feeds & Special Feeds (Item feeds require elevated privelages)
string apiKey = ConfigurationManager.AppSettings["apiKey"];
Console.WriteLine("Enter your search query");
var search = new SearchRequest() {apiKey = apiKey};
search.query = Console.ReadLine();
var searchResponse = ApiCall.Send<SearchResponse>(search);