Consuming json API in C# application – part 3
To fetch JSON API response from web and deserialize it to class in C# (NET 6 / 7), next steps are needed: – Use the HttpClient class to send HTTP requests and receive HTTP responses³. – Use the JsonSerializer class to deserialize JSON into objects²³. – Create a class with properties that match the JSON properties you… Read More »