Trying to understand the default Blazor WebAssembly ASP.NET Hosted template ... my question is exactly what's the location of the API hosted by the server app?
The client app simply calls an API "weatherforecast":
await Http.GetFromJsonAsync<WeatherForecast[]>("WeatherForecast");
But there is no such URL if you navigate manually to http://localhost:xxxxx/weatherforecast
What's the actual API endpoint if I want to see the raw JSON result?