# List catalog integration slugs (cardamom)

> Source: https://docs.clonepartner.com/api-reference/connectors/list-connector-catalog-integrations/

`GET /api/connectors/{id}/catalog-integrations`

Cardamom connectors only. Returns up to 100 integration slugs from the
file catalog (`integrations_dir`) or Clove (`clove_url`) for the Connect picker.

**Operation ID:** `listConnectorCatalogIntegrations`

## Authentication

### Option 1

- **BearerAuth** (`http bearer`)
  API key token. Create via POST /api/api-keys. Format: `envoy_<hex>`

### Option 2

- **CookieAuth** (`apiKey`)
  Session cookie set after login + TOTP verification

## Path parameters

- `id` — `integer`, `required`
  Resource ID

## Success responses

### 200

Catalog integration summaries

**Content type:** `application/json`

- Type: `object`
- Properties:
  - `result` (`array<object>`, `required`)
    - Items:
      - Type: `object`
      - Properties:
        - `slug` (`string`, `required`)
        - `label` (`string`)

## Error responses

### 400

Not a cardamom connector


### 404

Resource not found

**Content type:** `application/json`

- Reference: `Error`
  - Type: `object`
  - Properties:
    - `error` (`string`)
      - Example: `NOT_FOUND`
    - `message` (`string`)
      - Example: `Resource not found`

Example:

```json
{
  "error": "NOT_FOUND",
  "message": "Resource not found"
}
```

### 500

Catalog list failed


## Examples

### cURL

```bash
curl --request GET \
  --url 'https://your-envoy.example.com/api/connectors/YOUR_ID/catalog-integrations' \
  --header 'Authorization: Bearer $API_KEY'
```

### JavaScript (fetch)

```javascript
const response = await fetch('https://your-envoy.example.com/api/connectors/YOUR_ID/catalog-integrations', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
  },
});

if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = response.status === 204 ? null : await response.json();
console.log(data);
```
