#rest-api
Read more stories on Hashnode
Articles with this tag
Most APIs follow a simple pattern. The client sends a request. The server does some work. The server sends back a response. This works well for fast...
Idempotency is a crucial concept for REST APIs that ensures the reliability and consistency of your system. An idempotent operation can be repeated...
When developing HTTP APIs, providing consistent and informative error responses is crucial for a smooth developer experience. Problem Details in...
In ASP.NET Core applications using Minimal APIs, registering each API endpoint with app.MapGet, app.MapPost, etc., can introduce repetitive code. As...
In the past year, I built and maintained a large public API. The API has dozens of integrations, serving mainly mobile applications. When your API is...