ApiAggregator 2.0.0

dotnet add package ApiAggregator --version 2.0.0                
NuGet\Install-Package ApiAggregator -Version 2.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ApiAggregator" Version="2.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ApiAggregator --version 2.0.0                
#r "nuget: ApiAggregator, 2.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

NuGet version License: MIT Master-Build GitHub Release Master-CodeQL .Net 9.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 Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 13 11/22/2024
1.0.0 85 11/6/2024

v2.0 - Targets .Net9.0
- Includes core functionality for aggregating apis.