> ## Documentation Index
> Fetch the complete documentation index at: https://docs.collabase.ch/llms.txt
> Use this file to discover all available pages before exploring further.

# API Reference

> The Collabase REST API — integrate and automate your Collabase instance.

<Warning>
  **The Collabase API is currently in closed beta.** Access is available to selected customers only and is not yet generally available. If you are interested in API access, [reach out to us](https://collabase.featurebase.app/en) and we will add you to the beta program.
</Warning>

The Collabase REST API lets you integrate Collabase with your other tools and automate tasks programmatically.

## Base URL

```
https://your-collabase-domain/api
```

## Authentication

All API requests require an API key passed as a Bearer token in the `Authorization` header:

```bash theme={"dark"}
Authorization: Bearer cba_live_xYz123ABCD...
```

API key management is part of the beta program. Contact Collabase to get your key.

## Response format

All responses return JSON.

**Success:**

```json theme={"dark"}
{ "data": { ... } }
```

**Error:**

```json theme={"dark"}
{ "error": "Unauthorized" }
```

## Rate limiting

Requests are limited to 300 per minute per API key. If you exceed this, the API returns `429 Too Many Requests`.

***

## Available endpoints

<CardGroup cols={2}>
  <Card title="Automation API" icon="wand-magic-sparkles" href="/api/automation/list-automations">
    Manage automations, connections, executions, templates, and webhooks.
  </Card>

  <Card title="Test Management API" icon="flask" href="/api/test-management/list-projects">
    Projects, test cases, test runs, results, and milestones.
  </Card>

  <Card title="Health" icon="heart-pulse" href="/api/health">
    Service health check — no authentication required.
  </Card>

  <Card title="SCIM" icon="users" href="/api/scim/users">
    User and group provisioning for Okta, Microsoft Entra, and any SCIM 2.0 provider.
  </Card>
</CardGroup>
