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
                    
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="Soenneker.Composio.OpenApiClientUtil" Version="4.0.214" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Composio.OpenApiClientUtil" Version="4.0.214" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Composio.OpenApiClientUtil" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Composio.OpenApiClientUtil --version 4.0.214
                    
#r "nuget: Soenneker.Composio.OpenApiClientUtil, 4.0.214"
                    
#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.
#:package Soenneker.Composio.OpenApiClientUtil@4.0.214
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Composio.OpenApiClientUtil&version=4.0.214
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Composio.OpenApiClientUtil&version=4.0.214
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

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 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. 
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
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
Loading failed