Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 519 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 519 Bytes

OpenSkyRestClient

Implements a .NET Client for the OpenSky REST API:

Installing

To install OpenSkyRestClient, run the following command in the Package Manager Console:

PM> Install-Package OpenSkyRestClient

Usage

// Create a new OpenSkyClient:
var client = new OpenSkyClient();

// And get all StateVectors from the REST API:
var stateVectors = client.GetAllStateVectorsAsync();