Levain LabsLevain Labs
API ReferenceAgents

List Agent Integrations

List an agent's integrations.

List an agent's integrations.

Without workspace-wide access this is the explicitly attached set. With it, the list covers every workspace integration the agent can reach — explicit attachments (source="attached"), the workspace-wide default (source="workspace"), and exclusions (source="excluded") so a client can render the full toggle surface.

GET
/api/v1/agents/{agent_id}/integrations

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Path Parameters

agent_id*Agent Id

Header Parameters

X-API-Key?string|null

Response Body

application/json

application/json

curl -X GET "https://api.levainlabs.com/api/v1/agents/string/integrations"
[
  {
    "integration_id": "string",
    "provider": "string",
    "kind": "string",
    "display_name": "string",
    "status": "string",
    "scopes": [
      "string"
    ],
    "tool_allowlist": [
      "string"
    ],
    "attached_at": "string",
    "source": "attached"
  }
]
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}