A simple C# wrapper for the HTTP-based Rotten Tomatoes API, which you can learn about at http://developer.rottentomatoes.com/docs/read/JSON
var rtClient = new RottenTomatoesRestClient("myApiKey");
var wolverineMovies = rtClient.MoviesSearch("the wolverine");
var rtClient = new RottenTomatoesRestClient("myApiKey");
const int wolverineMovieId = 771193517;
var wolverineMovies = rtClient.MoviesSimilar(wolverineMovieId);
var rtClient = new RottenTomatoesRestClient("myApiKey");
var newDvds = rtClient.NewReleaseDvds();
This wrapper supports every end point of the Rotten Tomatoes JSON API.
You can add the Rotten Tomatoes API to your project using NuGet.