ApiAggregator 2.0.0
dotnet add package ApiAggregator --version 2.0.0
NuGet\Install-Package ApiAggregator -Version 2.0.0
<PackageReference Include="ApiAggregator" Version="2.0.0" />
paket add ApiAggregator --version 2.0.0
#r "nuget: ApiAggregator, 2.0.0"
// Install ApiAggregator as a Cake Addin #addin nuget:?package=ApiAggregator&version=2.0.0 // Install ApiAggregator as a Cake Tool #tool nuget:?package=ApiAggregator&version=2.0.0
ApiAggregator v2.0.0
Introduction
What is ApiAggregator?
ApiAggregator
is a .net utility to help combine multiple api requests to return a single aggregated response.
The framework allows fetching the whole of aggregated response or a partial response based on the list of configured apis included in the aggregator request.
When is ApiAggregator useful?
ApiAggregator is useful in many use cases. Few to list are:
- For creating Level 2 (functional or BFF) apis using Level 1 (core resource) apis.
- For easily extending an api without having to break existing consumers.
- For on demand retrieval of data using different subsets of configured apis to fetch varied datasets per request.
- and Many more.
Getting Started?
i. Installation
Install the latest version of ApiAggregator nuget package with command below.
NuGet\Install-Package ApiAggregator
ii. Developer Guide
Please read Developer Guide for details on how to implement ApiAggregator in your project.
Support
If you are having problems, please let me know by raising a new issue.
License
This project is licensed with the MIT license.
Version History
The main branch is now on .NET 9.0. The following previous versions are available:
| Version | Release Notes |
| -------- | --------|
| v2.0.0
| Notes |
| v1.0.0
| Notes |
Credits
Thank you for reading. Please fork, explore, contribute and report. Happy Coding !! 😃
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. |
-
net9.0
- Microsoft.Extensions.Http (>= 9.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
v2.0 - Targets .Net9.0
- Includes core functionality for aggregating apis.