A C# client for NASA's TLE Satellite API created using RestSharp.
varclient=newTleApiClient();// Get a single record with satellite id 11416.TleRecordoneRecord=client.GetTleRecord(11416);// Get a list of records. This request is the default collection response.TleRecordCollectionall=client.GetAllTleRecords();// Get a list of records with certain query parameters.varoptions=newTleRecordCollectionOptions(){// Search for "ISS" in the Name field of the recordsSearch="ISS",// How many records an individual response will returnPageSize=100,// Sort by Id, instead of the the default NameSort="id"};TleRecordCollectionsearch=client.GetAllTleRecords(options);Further documentation for the client is available in the TLE.NET class files. Documentation for the TLE API is available at https://data.ivanstanojevic.me/api/tle/docs.