API ReferenceAgents

List agent integrations

Integrations with nested actions (no sensitive config).

GET
/api/v1/console/agents/{agentId}/integrations

Authorization

ApiKeyAuth
AuthorizationBearer <token>

Team API key (prefix sk_). You may also send the key via X-Api-Key header.

In: header

Path Parameters

agentId*string

Response Body

application/json

curl -X GET "https://example.com/api/v1/console/agents/string/integrations"
{  "message": "Success",  "data": [    {      "id": "string",      "type": "string",      "name": "string",      "status": "string",      "is_connected": true,      "config_fields": [        {          "key": "string",          "label": "string",          "type": "string",          "required": true        }      ],      "actions": [        {          "action_name": "string",          "name": "string",          "description": "string",          "category": "string",          "is_enabled": true,          "require_human_approval": true        }      ]    }  ]}