Thanks to visit codestin.com
Credit goes to github.com

Skip to content
forked from cr1/WalmartApi

Consume Walmart's Open API with C#

khurram7/WalmartApi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C# JSON Walmart API

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.

Currently supported:

  • Product Search
  • Product Lookup
  • Taxonomy
  • Data Feeds & Special Feeds (Item feeds require elevated privelages)

Example

        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);

About

Consume Walmart's Open API with C#

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%