RapidAPI.StreamingAvailability.Client 1.0.0

dotnet add package RapidAPI.StreamingAvailability.Client --version 1.0.0
NuGet\Install-Package RapidAPI.StreamingAvailability.Client -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RapidAPI.StreamingAvailability.Client" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RapidAPI.StreamingAvailability.Client --version 1.0.0
#r "nuget: RapidAPI.StreamingAvailability.Client, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RapidAPI.StreamingAvailability.Client as a Cake Addin
#addin nuget:?package=RapidAPI.StreamingAvailability.Client&version=1.0.0

// Install RapidAPI.StreamingAvailability.Client as a Cake Tool
#tool nuget:?package=RapidAPI.StreamingAvailability.Client&version=1.0.0

RapidAPI.StreamingAvailability.Client

This is a .NET client library for the Streaming Availability API provided by RapidAPI. It allows you to fetch and process data about movies and series, including details about streaming availability, cast, directors, genres, and more.

Getting Started

To use this library, you need to have an API key from RapidAPI. You can get it by signing up on their website.

var client = new RapidAPI.StreamingAvailability.Client.Client("your-api-key");

Usage

Get a list of movies and series

// This will search for all movies and series with the title "The Matrix" in Sweden with the language set to English.
var shows = client.SearchByTitle("The Matrix", "se", "all", "en");

// If you search for both movies and series, you can filter out the series by checking the type of the object.
foreach (var item in shows)
{
    if (item == null) continue;
    if (item is Series series)
    {
        // Access properties specific to the Series class
    }
    else if (item is Movie movie)
    {
        // Access properties specific to the Movies class
    }
}

More api endpoints will be added in the future.

Dependencies

This library uses the following packages:

  • Newtonsoft.Json
  • RestSharp

License

This project is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 158 7/6/2023