FastEndpoints 3.11.0-beta11
Prefix ReservedSee the version list below for details.
dotnet add package FastEndpoints --version 3.11.0-beta11
NuGet\Install-Package FastEndpoints -Version 3.11.0-beta11
<PackageReference Include="FastEndpoints" Version="3.11.0-beta11" />
<PackageVersion Include="FastEndpoints" Version="3.11.0-beta11" />
<PackageReference Include="FastEndpoints" />
paket add FastEndpoints --version 3.11.0-beta11
#r "nuget: FastEndpoints, 3.11.0-beta11"
#:package FastEndpoints@3.11.0-beta11
#addin nuget:?package=FastEndpoints&version=3.11.0-beta11&prerelease
#tool nuget:?package=FastEndpoints&version=3.11.0-beta11&prerelease
FastEndpoints
A light-weight REST Api framework for ASP.Net 6 that implements REPR (Request-Endpoint-Response) Pattern.
FastEndpoints offers a better alternative than the Minimal Api and MVC Controllers with the aim of increasing developer productivity. Performance is on par with the Minimal Api and is faster; uses less memory; and does around 45k more requests per second than a MVC Controller in a head-to-head comparison.
Documentation: https://fast-endpoints.com
please visit the official website for detailed documentation.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- FastEndpoints.Validation (>= 3.11.0-beta11)
NuGet packages (155)
Showing the top 5 NuGet packages that depend on FastEndpoints:
| Package | Downloads |
|---|---|
|
FastEndpoints.Swagger
Swagger support for FastEndpoints. |
|
|
FastEndpoints.Security
Security library for FastEndpoints. |
|
|
Elsa.Api.Common
Provides common features to modules that expose API endpoints. |
|
|
Elsa.JavaScript
Provides a JavaScript expression provider. |
|
|
Elsa.EntityFrameworkCore
Provides Entity Framework Core implementations of various abstractions from various modules. |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on FastEndpoints:
| Repository | Stars |
|---|---|
|
ardalis/CleanArchitecture
Clean Architecture Solution Template: A proven Clean Architecture Template for ASP.NET Core 10
|
|
|
elsa-workflows/elsa-core
The Workflow Engine for .NET
|
| Version | Downloads | Last Updated |
|---|---|---|
| 8.3.0-beta.17 | 0 | 7/21/2026 |
| 8.3.0-beta.16 | 65 | 7/18/2026 |
| 8.3.0-beta.15 | 91 | 7/15/2026 |
| 8.3.0-beta.14 | 68 | 7/15/2026 |
| 8.3.0-beta.12 | 278 | 7/11/2026 |
| 8.3.0-beta.11 | 95 | 7/11/2026 |
| 8.3.0-beta.10 | 206 | 7/9/2026 |
| 8.3.0-beta.9 | 706 | 7/2/2026 |
| 8.3.0-beta.8 | 618 | 7/1/2026 |
| 8.3.0-beta.7 | 86 | 7/1/2026 |
| 8.3.0-beta.6 | 234 | 6/30/2026 |
| 8.3.0-beta.5 | 127 | 6/29/2026 |
| 8.3.0-beta.4 | 445 | 6/29/2026 |
| 8.3.0-beta.3 | 120 | 6/27/2026 |
| 8.3.0-beta.2 | 98 | 6/26/2026 |
| 8.3.0-beta.1 | 90 | 6/26/2026 |
| 8.2.0 | 100,471 | 6/24/2026 |
| 8.2.0-beta.51 | 413 | 6/23/2026 |
| 8.2.0-beta.50 | 205 | 6/22/2026 |
| 3.11.0-beta11 | 966 | 3/17/2022 |
### NEW
- override/disable global route prefix in endpoints via `RoutePrefixOverride()` method
- `ResponseStarted` property on endpoint class to facilitate manual response sending in non-kestrel environments
### CHANGES
- `AddSwaggerDoc` serializer settings now accepts `System.Test.Json.JsonSerializerOptions` instead of newtonsoft
- #62 set default swagger serializer casing to camel case
- all send methods will now use `HttpContext.RequestAborted` cancellation token if a token was not supplied
### IMPROVEMENTS
- lazy initialize validation failure list in base endpoint class
- stop relying on request content-length header in model binding
- swagger now honors system.text.json attributes such as `[JsonIgnore]` and [JsonPropertyName]
- swagger `[BindFrom]` attribute handling improvements
- upgrade to latest fluentvalidation code
- upgrade other dependancies to latest
### FIXES
- correct handling of jwt issuer/audience
- swagger replacing default response descriptions when user doesn't supply a value