How i can Fetch data from an Json Api like that:
https://jsonplaceholder.typicode.com/todos/1
responseBody.title
i Already have this:
HttpResponseMessage response = await
client.GetAsync("https://jsonplaceholder.typicode.com/todos/1");
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();