Go to your controller and add some dependency in your code.

        Note: Must add this middleware in the startup.cs file

        builder.Services.AddHttpClient();

        private readonly IHttpClientFactory _httpClientFactory;

        public HomeController(IHttpClientFactory httpClientFactory)

        {

            _httpClientFactory = httpClientFactory;

        }

        



Get method


Post method












Get By Id