About 39,800 results
Open links in new tab
  1. Tutorial: Create a Minimal API with ASP.NET Core

    Aug 21, 2024 · Minimal APIs are architected to create HTTP APIs with minimal dependencies. They're ideal for microservices and apps that want to include only the minimum files, features, and …

  2. Minimal APIs quick reference | Microsoft Learn

    Dec 5, 2025 · This document: Provides a quick reference for Minimal APIs. Is intended for experienced developers. For an introduction, see Tutorial: Create a Minimal API with ASP.NET Core. The Minimal …

  3. APIs overview | Microsoft Learn

    Aug 28, 2025 · Learn how to build fast HTTP APIs with ASP.NET Core using Minimal APIs, the recommended approach for new projects.

  4. Parameter binding in Minimal API applications | Microsoft Learn

    ASP.NET Core provides support for custom parameter binding in Minimal APIs using the IBindableFromHttpContext<TSelf> interface. This interface, introduced with C# 11's static abstract …

  5. Create responses in Minimal API applications | Microsoft Learn

    Aug 22, 2025 · This article explains how to create responses for Minimal API endpoints in ASP.NET Core. Minimal APIs provide several ways to return data and HTTP status codes.

  6. Authentication and authorization in Minimal APIs

    Jul 26, 2024 · Minimal APIs support all the authentication and authorization options available in ASP.NET Core and provide some additional functionality to improve the experience working with …

  7. Route handlers in Minimal API apps | Microsoft Learn

    May 5, 2025 · Route Handlers in Minimal API apps Note This isn't the latest version of this article. For the current release, see the .NET 10 version of this article. Warning This version of ASP.NET Core is …

  8. Interact With an ASP.NET Core Minimal API - Training

    Learn how APIs are implemented in ASP.NET Core, and how to use API documentation to learn the APIs requirements.

  9. How do I add parameters and the DbContext to a minimal API call ...

    Nov 25, 2024 · Learn how to build fast HTTP APIs with ASP.NET Core using Minimal APIs, the recommended approach for new projects. Learn how parameters are populated before invoking …

  10. Middleware with Minimal API applications | Microsoft Learn

    Aug 28, 2025 · WebApplication automatically adds the following middleware in Minimal API applications depending on certain conditions: UseDeveloperExceptionPage is added first when the …