FastEndpoints 4.3.0-beta8
Prefix ReservedSee the version list below for details.
dotnet add package FastEndpoints --version 4.3.0-beta8
NuGet\Install-Package FastEndpoints -Version 4.3.0-beta8
<PackageReference Include="FastEndpoints" Version="4.3.0-beta8" />
<PackageVersion Include="FastEndpoints" Version="4.3.0-beta8" />
<PackageReference Include="FastEndpoints" />
paket add FastEndpoints --version 4.3.0-beta8
#r "nuget: FastEndpoints, 4.3.0-beta8"
#:package FastEndpoints@4.3.0-beta8
#addin nuget:?package=FastEndpoints&version=4.3.0-beta8&prerelease
#tool nuget:?package=FastEndpoints&version=4.3.0-beta8&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
- FluentValidation (>= 11.0.1)
NuGet packages (140)
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 (1)
Showing the top 1 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
|
| Version | Downloads | Last Updated |
|---|---|---|
| 8.2.0-beta.23 | 32 | 4/26/2026 |
| 8.2.0-beta.22 | 39 | 4/25/2026 |
| 8.2.0-beta.21 | 75 | 4/23/2026 |
| 8.2.0-beta.20 | 47 | 4/23/2026 |
| 8.2.0-beta.19 | 54 | 4/23/2026 |
| 8.2.0-beta.18 | 48 | 4/23/2026 |
| 8.2.0-beta.17 | 55 | 4/22/2026 |
| 8.2.0-beta.16 | 52 | 4/21/2026 |
| 8.2.0-beta.15 | 78 | 4/20/2026 |
| 8.2.0-beta.14 | 63 | 4/20/2026 |
| 8.2.0-beta.13 | 132 | 4/20/2026 |
| 8.2.0-beta.12 | 58 | 4/20/2026 |
| 8.2.0-beta.11 | 60 | 4/19/2026 |
| 8.2.0-beta.10 | 58 | 4/18/2026 |
| 8.2.0-beta.9 | 69 | 4/17/2026 |
| 8.2.0-beta.8 | 100 | 4/14/2026 |
| 8.2.0-beta.7 | 63 | 4/14/2026 |
| 8.2.0-beta.6 | 64 | 4/13/2026 |
| 8.1.0 | 111,438 | 3/25/2026 |
| 4.3.0-beta8 | 774 | 5/29/2022 |
### NEW
- endpoint discovery options argument for `AddFastEndpoints()`
- source generator support for type discovery #117
### IMPROVEMENTS
- throw exception if swagger pipeline is misconfigured #122
- validator inheritance for swagger-fluentvalidation integration #126 #135 #141
- cancellation token support for hooks #134
### FIXES
- binding duplicate claim types such as `role` #131
- not finding generic parameters of `Summary<TEndpoint,TRequest>` at startup
### CHANGES
- specifying custom assemblies at startup should now be done like: `AddFastEndpoints(o=> o.Assemblies = ...)`
- `AbstractValidator<T>` classes will no longer be auto discovered due to #140
- moved `ValidationFailureException` to `FastEndpoints` namespace. you'll have to add a `Using FastEndoints;` import statement if this class is referenced from your code.