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

# List Integrations

## List Integrations

Retrieve a list of integrations belonging to the authenticated user.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.example.com/api/v1/integrations" \
    -H "X-API-Key: your-api-key-here"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.example.com/api/v1/integrations', {
    method: 'GET',
    headers: {
      'X-API-Key': 'your-api-key-here'
    }
  });

  const data = await response.json();
  ```

  ```python Python theme={null}
  import requests

  headers = {
      'X-API-Key': 'your-api-key-here'
  }

  response = requests.get(
      'https://api.example.com/api/v1/integrations',
      headers=headers
  )

  data = response.json()
  ```
</RequestExample>

## Response

<ResponseField name="status" type="object">
  Response status information

  <ResponseField name="code" type="integer">
    HTTP status code (200)
  </ResponseField>

  <ResponseField name="message" type="string">
    Status message
  </ResponseField>
</ResponseField>

<ResponseField name="data" type="array">
  Array of integration objects

  <ResponseField name="id" type="integer">
    Integration ID
  </ResponseField>

  <ResponseField name="integration_type" type="string">
    Type of integration (e.g., 'elevenlabs', 'openai', 'anthropic')
  </ResponseField>

  <ResponseField name="config" type="object">
    Integration-specific configuration
  </ResponseField>

  <ResponseField name="schema" type="object">
    Schema definition with required/optional fields
  </ResponseField>

  <ResponseField name="user_id" type="integer">
    Owner user ID
  </ResponseField>

  <ResponseField name="user_email" type="string">
    Owner email address
  </ResponseField>

  <ResponseField name="created_at" type="string">
    ISO 8601 creation timestamp
  </ResponseField>

  <ResponseField name="updated_at" type="string">
    ISO 8601 last update timestamp
  </ResponseField>
</ResponseField>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "status": {
      "code": 200,
      "message": "Success"
    },
    "data": [
      {
        "id": 1,
        "integration_type": "elevenlabs",
        "config": {
          "api_key": "sk_***"
        },
        "schema": {
          "required": ["api_key"],
          "optional": [],
          "fields": {
            "api_key": {
              "type": "string",
              "description": "ElevenLabs API key"
            }
          }
        },
        "user_id": 1,
        "user_email": "user@example.com",
        "created_at": "2024-01-10T08:00:00Z",
        "updated_at": "2024-01-10T08:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>

## Error Responses

<ResponseField name="401" type="object">
  Unauthorized - Invalid or missing authentication
</ResponseField>
