GET /integrations
List connected integrations.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/integrations |
A read-only view, so an agent authoring another agent's config can learn which repositories, channels, teams, and organizations it may name before POST /automations. Available to all credential types including sandbox tokens: the responses never include OAuth tokens or any other secret.
curl "https://api.ellipsis.dev/v1/integrations" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.integrations.list()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.integrations.list();
console.log(result);Request
Response
Example response · 200
{
"sentry": [],
}