Blazor HTTP Client examples Post JSON await httpClient.PostAsJsonAsync(url, data); Post and JSON and read from JSON response var response = await httpClient.PostAsJsonAsync(url, data); var entity = await response.Content.ReadFromJsonAsync<TEntity>();