Soenneker.Composio.OpenApiClientUtil
4.0.214
Prefix Reserved
dotnet add package Soenneker.Composio.OpenApiClientUtil --version 4.0.214
NuGet\Install-Package Soenneker.Composio.OpenApiClientUtil -Version 4.0.214
<PackageReference Include="Soenneker.Composio.OpenApiClientUtil" Version="4.0.214" />
<PackageVersion Include="Soenneker.Composio.OpenApiClientUtil" Version="4.0.214" />
<PackageReference Include="Soenneker.Composio.OpenApiClientUtil" />
paket add Soenneker.Composio.OpenApiClientUtil --version 4.0.214
#r "nuget: Soenneker.Composio.OpenApiClientUtil, 4.0.214"
#:package Soenneker.Composio.OpenApiClientUtil@4.0.214
#addin nuget:?package=Soenneker.Composio.OpenApiClientUtil&version=4.0.214
#tool nuget:?package=Soenneker.Composio.OpenApiClientUtil&version=4.0.214
Soenneker.Composio.OpenApiClientUtil
Provides a lazily created, cached Composio OpenAPI client backed by Soenneker.Composio.HttpClients.
Installation
dotnet add package Soenneker.Composio.OpenApiClientUtil
Configuration
{
"Composio": {
"ApiKey": "your-project-api-key"
}
}
The underlying HTTP provider sends the key in x-api-key and targets https://backend.composio.dev. See Soenneker.Composio.HttpClients for the optional header-template and base-address overrides.
Registration
using Soenneker.Composio.OpenApiClientUtil.Registrars;
services.AddComposioOpenApiClientUtilAsScoped();
Use AddComposioOpenApiClientUtilAsSingleton() when one cached generated client should be shared by the application.
Usage
using Soenneker.Composio.OpenApiClient;
using Soenneker.Composio.OpenApiClientUtil.Abstract;
public sealed class ToolkitService
{
private readonly IComposioOpenApiClientUtil _clients;
public ToolkitService(IComposioOpenApiClientUtil clients)
{
_clients = clients;
}
public async Task List(CancellationToken cancellationToken)
{
ComposioOpenApiClient client = await _clients.Get(cancellationToken);
var result = await client.Api.V3.Toolkits.GetAsync(request =>
{
request.QueryParameters.Limit = 50;
}, cancellationToken);
}
}
Each utility instance caches one generated client. Both registrations use a singleton HTTP provider; a scoped utility can therefore be discarded without disposing the shared HttpClient. The HTTP provider remains responsible for that client's lifetime and disposes it when the application container shuts down.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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. |
-
net10.0
- Soenneker.Composio.HttpClients (>= 4.0.120)
- Soenneker.Composio.OpenApiClient (>= 4.0.113)
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 |
|---|---|---|
| 4.0.214 | 0 | 9/16/2026 |
| 4.0.213 | 5 | 9/15/2026 |
| 4.0.212 | 7 | 9/15/2026 |
| 4.0.211 | 50 | 9/13/2026 |
| 4.0.210 | 44 | 9/13/2026 |
| 4.0.209 | 54 | 9/13/2026 |
| 4.0.208 | 51 | 9/12/2026 |
| 4.0.207 | 63 | 9/12/2026 |
| 4.0.206 | 50 | 9/12/2026 |
| 4.0.205 | 58 | 9/12/2026 |
| 4.0.203 | 51 | 9/11/2026 |
| 4.0.202 | 79 | 9/10/2026 |
| 4.0.201 | 86 | 9/9/2026 |
| 4.0.200 | 89 | 9/9/2026 |
| 4.0.199 | 101 | 9/8/2026 |
| 4.0.198 | 89 | 9/8/2026 |
| 4.0.197 | 105 | 9/8/2026 |
| 4.0.196 | 95 | 9/8/2026 |
| 4.0.194 | 95 | 9/7/2026 |
| 4.0.193 | 105 | 9/7/2026 |