Skip to content

Authentication

The Composio API uses Bearer token authentication.

Getting an API Key

  1. Sign up at composio.dev
  2. Navigate to your dashboard settings
  3. Create a new API key

Client Initialization

1
2
3
4
using Composio;

var client = new ComposioClient(
    apiKey: Environment.GetEnvironmentVariable("COMPOSIO_API_KEY")!);

Environment Variables

For integration tests, set the following environment variable:

1
export COMPOSIO_API_KEY=your-api-key-here