Skip to main content
GET
/
api
/
v1
/
custom-integrations
List Custom Integrations
curl --request GET \
  --url https://control-plane.kubiya.ai/api/v1/custom-integrations \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "organization_id": "org-123",
    "name": "production-postgres",
    "integration_type": "postgres",
    "description": "Production PostgreSQL database",
    "status": "active",
    "config": {
      "env_vars": {
        "DB_HOST": "postgres.example.com"
      },
      "secrets": [
        "DB_PASSWORD"
      ]
    },
    "tags": [
      "production",
      "database"
    ],
    "created_at": "2025-12-16T10:00:00Z",
    "updated_at": "2025-12-16T10:00:00Z",
    "created_by": "user-123"
  }
]

Authorizations

Authorization
string
header
required

Enter your Kubiya API token (format: Bearer )

Query Parameters

integration_type
string | null

Filter by integration type (e.g., postgres, mongodb, redis)

status
enum<string> | null

Filter by status (active, inactive, deleted)

Available options:
active,
inactive,
deleted
tags
string | null

Filter by tags - comma-separated (e.g., production,database)

Response

List of custom integrations

id
string
required
organization_id
string
required
name
string
required
integration_type
string
required
description
string | null
required
status
string
required
config
Config · object
required
tags
string[]
required
created_at
string
required
updated_at
string
required
created_by
string | null
required