> ## 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.

# Get Integration

## Get Integration

Retrieve a specific integration by type. Users can only access their own integrations.

<ParamField path="path" name="type" type="string" required>
  Integration type (e.g., 'elevenlabs', 'openai', 'anthropic')
</ParamField>

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

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

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

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

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

  response = requests.get(
      f'https://api.example.com/api/v1/integrations/{integration_type}',
      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="object">
  Integration object
</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>

<ResponseField name="404" type="object">
  Integration not found
</ResponseField>
