C# Web API is a framework that allows developers to build RESTful services using the .NET ecosystem. It enables communication between clients and servers over HTTP, making it a powerful tool for web applications, mobile apps, and cloud-based services.
C# Web API follows REST (Representational State Transfer) principles, which emphasize stateless communication and a uniform interface using HTTP methods like GET, POST, PUT, and DELETE.
Modern C# Web APIs are developed using ASP.NET Core, a lightweight and cross-platform framework that enhances performance and scalability.
By default, Web API supports JSON format, making it easy to work with front-end frameworks like React, Angular, and Vue.js.
ASP.NET Core Web API supports dependency injection, promoting modular and maintainable code structures.
The framework provides a customizable middleware pipeline, allowing developers to handle authentication, logging, and request processing efficiently.
Run the following command in the terminal:
sh
dotnet new webapi -n MyWebAPI
cd MyWebAPI
Create a simple API controller in Controllers/WeatherForecastController.cs
:
WeatherForecastController.cs
[Route("api/[controller]")]
[ApiController]
public class WeatherForecastController : ControllerBase
{
[HttpGet]
public IEnumerable<string> Get()
{
return new string[] { "Sunny", "Rainy", "Cloudy" };
}
}
Use the following command to run the API:
sh
dotnet run
Navigate to https://localhost:5001/api/weatherforecast
in a browser or use Postman to test the response.