# List connected integrations Returns a list of all integrations (skills) connected to your organization. These are third-party tools like Notion, Slack, Salesforce, etc. that your AI agents can interact with. Endpoint: GET /skills Version: 1.0.0 Security: ApiKeyAuth, OrgIdAuth ## Response 200 fields (application/json): - `skills` (array) - `skills.id` (string, required) Unique identifier for the integration Example: "tool-notion" - `skills.name` (string, required) Integration identifier Example: "notion" - `skills.displayName` (string, required) Human-readable integration name Example: "Notion" - `skills.description` (string,null) Integration description Example: "Note-taking and collaboration workspace" - `skills.iconUrl` (string,null) Integration icon URL Example: "https://example.com/notion-icon.png" - `skills.category` (string,null) Integration category Example: "Productivity" - `skills.isConnected` (boolean, required) Whether the integration is connected Example: true - `skills.connectedAt` (string,null) Connection timestamp ## Response 400 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required" ## Response 401 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required"