Mostrando o personagem Jon Snow de Game of Thrones através da requisição de API
using (HttpClient client = new HttpClient())
{
try
{
string resposta = await client.GetStringAsync("https://anapioficeandfire.com/api/characters/583\r\n");
Console.WriteLine(resposta);
}
catch (Exception e)
{
Console.WriteLine($"error: {e.Message}");
}