Skip to main content
GET
/
api
/
v1
/
integration-templates
/
{template_id}
Get Integration Template
curl --request GET \
  --url https://control-plane.kubiya.ai/api/v1/integration-templates/{template_id} \
  --header 'Authorization: Bearer <token>'
{
  "category": "database",
  "config": {
    "env_vars": {
      "DB_HOST": "localhost"
    },
    "secrets": [
      "DB_PASSWORD"
    ]
  },
  "description": "PostgreSQL database connection with SSL support",
  "icon": "PostgreSQL",
  "integration_type": "postgres",
  "name": "PostgreSQL Database",
  "tags": [
    "database",
    "postgres",
    "sql"
  ],
  "template_id": "postgres"
}

Authorizations

Authorization
string
header
required

Enter your Kubiya API token (format: Bearer )

Path Parameters

template_id
string
required

Response

Template details with full configuration

Integration template response

template_id
string
required
name
string
required
integration_type
string
required
description
string
required
category
string
required
config
Config · object
required
tags
string[]
required
icon
string | null