Articles by Tag #webapi

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

Are Web APIs the same as REST APIs? How to Improve your Web Apps with Web APIs

To answer the question simply: No, Web APIs are not the same as REST APIs. Web APIs refer to...

Learn More 54 2Jan 14

Microsoft Entra ID + .NET 8 Web API — From Zero to Production-Ready Authentication

Most .NET developers know they should use Microsoft Entra ID (formerly Azure AD) to secure...

Learn More 8 2Dec 2

Building a Browser-Based Voice-to-Text App with the Web Speech API

Building a Browser-Based Voice-to-Text App with the Web Speech API I recently built a...

Learn More 1 0Dec 12

Mastering Database Interceptors in .NET Core Web API (Beginner to Hero)

1. Introduction When building modern .NET Web API applications, database operations are at...

Learn More 16 0Sep 2

.NET 10 Data Export API — Minimal APIs, Mapster, Rate Limiting & OpenAPI Done Right

.NET 10 Data Export API — Minimal APIs, Mapster, Rate Limiting & OpenAPI Done...

Learn More 1 0Dec 6

Integration Testing with Real Databases Using Testcontainers

TL;DR: Testcontainers lets you run real SQL Server in Docker inside your tests. This guide shows how...

Learn More 0 0Dec 7

simple and clean odata explain

OData with .NET core: Essential Concepts & Best Practices ...

Learn More 0 0Nov 20

ASP.NET Core Middleware Order Explained: Why app.UseAuthentication() Must Come Before app.UseAuthorization()

When building an ASP.NET Core application, middleware order is critical. Two common middlewares are...

Learn More 1 0Oct 6

𝗕𝗼𝗼𝘀𝘁 .𝗡𝗘𝗧 𝗣𝗲𝗿𝗳𝗼𝗿𝗺𝗮𝗻𝗰𝗲 𝘄𝗶𝘁𝗵 𝗥𝗲𝘀𝗽𝗼𝗻𝘀𝗲 𝗖𝗮𝗰𝗵𝗶𝗻𝗴

You don’t always need a faster API — just a smarter cache. Most developers chase performance using...

Learn More 1 0Oct 8

𝗖𝗮𝗻 𝗬𝗼𝘂 𝗦𝗽𝗼𝘁 𝘁𝗵𝗲 𝗝𝗪𝗧 𝗠𝗶𝘀𝘁𝗮𝗸𝗲?

Hey developers, Here’s a small JWT (JSON Web Token) code snippet in the image but something’s not...

Learn More 1 0Oct 13

Sending Emails with Gmail Using MailKit in .NET Web API: The Complete Guide

Introduction: Sending emails programmatically is a common requirement for many web...

Learn More 21 0Feb 18

Adding Rate Limiting to Your .NET Web API

Adding Rate Limiting to Your .NET Web API (with Settings from appsettings.json) APIs are...

Learn More 0 0Sep 23

Using JSON data types with .NET EF Core

Since v7, Entity Framework has provided support for JSON data types in the database, it means we can...

Learn More 0 0Aug 6

Web API Architecture: Services and Repositories

In the previous post, we added global error handling and logging using NLog. Now that we’ve made our...

Learn More 3 2May 12

🧱 Building a Todo List API with .NET Core Minimal APIs 🚀 A Simple & Powerful Guide

🚀 .NET Core's Minimal APIs offer a streamlined approach to building HTTP APIs with reduced...

Learn More 14 0May 20

AbortController - The Overlooked Browser API You Should Be Using

Ever clicked a button twice and accidentally fired off two API calls? Or maybe you started fetching...

Learn More 1 0Sep 26

OData with .NET core: Essential Concepts & Best Practices

OData (Open Data Protocol) is widely used in RESTful APIs for querying and manipulating data using...

Learn More 10 1Mar 11

🚀 Struggling with Slow Web APIs in .NET? Here’s How to Supercharge Their Performance! ⚡

In today’s fast-paced digital world, speed isn’t just a feature—it’s a necessity. Whether you’re...

Learn More 6 0Feb 6

𝗡𝗦𝘄𝗮𝗴 𝗠𝗮𝗱𝗲 𝗦𝗶𝗺𝗽𝗹𝗲 🚀

APIs are like restaurants. 🍴 Your menu = Endpoints Your dishes = Data/Services Your customers = Other...

Learn More 5 0Oct 4

Mastering Hangfire in .NET 9: A Complete Guide to Background Jobs

1. Introduction In modern web applications, not all tasks should run during the main user...

Learn More 15 0Aug 31

Key concepts that shed light on building Web API projects with ASP.NET Core.

This post is dedicated to one great book that I was lucky to read: “Building Web APIs with ASP.NET...

Learn More 0 0Dec 8

What Happens to sessionStorage When You Duplicate a Tab?

If you’re a developer debugging browser behavior or just curious about how browsers manage memory and...

Learn More 7 0Apr 15

SwaggerUI setup ASP.NET Core Web API

1) Select the ASP.NET Core Web API project template 2) Enable OpenAPI support 3) Install...

Learn More 5 0Aug 7

Learn AbortController with Examples - Never to look back again

In modern JavaScript development, managing asynchronous tasks such as data fetching, animations,...

Learn More 5 1Apr 20

Difference Between Web API and REST API

Feature Web API REST API Definition A framework for building HTTP-based services in .NET Core...

Learn More 5 0Mar 20

Web API Versioning and Testing

In the previous post, we have paid attention on our project structure and organizing the code in...

Learn More 2 0May 19

Securing ASP.NET Core APIs with OAuth2 and OpenID Connect (2025 Edition)

Security is no longer an afterthought — it’s the foundation. In 2025, with APIs powering everything...

Learn More 1 0May 28

How to connect two microservices with RabbitMQ and Rebus

The example in the github repository below shows a simple implementation of two microservices (.NET 8...

Learn More 1 3May 26

API Versioning in .Net Core.

What is API versioning API versioning helps you to manage and maintain different versions...

Learn More 3 0Dec 23 '24

Understanding HTTP Methods in Web API (.NET)

HTTP methods are essential in Web API (.NET) to define how clients interact with a server. Methods...

Learn More 0 0Sep 11