How to get costumer data from an order

Hello, i have C# .NET app that works with the API of my shop, below is the query that i use
public async Task GetOrdersAsync()
{
var shop = _config[“Shopify:Shop”];
var token = _config[“Shopify:AccessToken”];
var url = $“https://{shop}/admin/api/2024-07/orders.json?limit=10”;

var request = new HttpRequestMessage(HttpMethod.Get, url);
request.Headers.Add("X-Shopify-Access-Token", token);

var response = await _httpClient.SendAsync(request);
response.EnsureSuccessStatusCode();

var jsonResponse = await response.Content.ReadAsStringAsync();
Console.WriteLine("Shopify JSON response: " + jsonResponse);

return jsonResponse;

When i run the app it downolads correctly all the ordres but in the client data doesent show name or either street or anything,

Could someone help me.