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

# Get integration

> Retrieve a single integration by provider

Returns one integration by provider name. Credentials are not included.

### Path parameters

<ParamField path="provider" type="string" required>
  Provider name, e.g. `TWILIO`, `PLIVO`, `WHATSAPP`, `GOOGLE_DRIVE`
</ParamField>

<CodeGroup>
  ```bash curl theme={null}
  curl https://api.agentic-os.com/api/v1/integrations/TWILIO \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  requests.get(
      "https://api.agentic-os.com/api/v1/integrations/TWILIO",
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  ```

  ```javascript Node theme={null}
  await fetch("https://api.agentic-os.com/api/v1/integrations/TWILIO", {
    headers: { Authorization: `Bearer ${API_KEY}` },
  });
  ```
</CodeGroup>

### Response

```json theme={null}
{
  "id": "790bb3d4-b97a-4a48-8488-01b36fbd0c08",
  "tenantId": "6376ed84-fmbd-428f-96ea-cfcd21fbd3e9",
  "provider": "PLIVO",
  "displayName": "Plivo",
  "category": "messaging",
  "description": "Send SMS, make calls, and manage communications via Plivo.",
  "status": "ACTIVE",
  "createdAt": "2026-07-21T11:41:32.796Z",
  "updatedAt": "2026-07-29T11:10:55.768Z"
}
```
