An open API service indexing awesome lists of open source software.

https://github.com/li223/warframesharp

Basic wrapper for https://api.warframestat.us
https://github.com/li223/warframesharp

hacktoberfest warframe wrapper

Last synced: 3 months ago
JSON representation

Basic wrapper for https://api.warframestat.us

Awesome Lists containing this project

README

        

Basic wrapper for https://api.warframestat.us

I got bored, don't ask.

# Example

```cs
static async Task Main(string[] args)
{
//New instance of WarframeSharpClient
var client = new WarframeSharpClient();
//Get all the current alerts on PC
var data = await client.GetAlertsDataAsync(PlatformType.PC);
//Display the mission type and planet node
Console.WriteLine(string.Join("\n", data?.Select(x => $"Mission Type: {x.Mission.Type} || Node: {x.Mission.Node}")));
}
```