> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kubiya.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Integration Templates

> List all pre-configured integration templates.

    **Available Categories:**
    - database (PostgreSQL, MySQL, MongoDB, Elasticsearch)
    - cache (Redis)
    - messaging (RabbitMQ, Kafka)
    - storage (S3, SFTP)
    - api (Generic REST API)

    **Filtering:**
    - `category`: Filter by category name
    - `tag`: Filter by single tag
    - `search`: Search in name and description

    **Usage:**
    Templates provide pre-configured integration definitions that can be
    customized when creating a custom integration instance.

    **Example:**
    ```
    GET /api/v1/integration-templates?category=database
    GET /api/v1/integration-templates?tag=sql
    GET /api/v1/integration-templates?search=postgres
    ```



## OpenAPI

````yaml https://control-plane.kubiya.ai/api/openapi.json get /api/v1/integration-templates
openapi: 3.1.0
info:
  title: Agent Control Plane API
  description: Multi-tenant agent orchestration with Temporal workflows
  version: 1.0.0
servers: []
security:
  - BearerAuth: []
tags:
  - name: health
    description: 🏥 **Health & Status** - Check API health and availability
  - name: authentication
    description: 🔐 **Authentication** - Token validation and auth management
  - name: agents
    description: 🤖 **Agents** - Create and manage AI agents with custom capabilities
  - name: skills
    description: 🛠️ **Tool Sets** - Manage agent skills and tool configurations
  - name: integrations
    description: 🔌 **Integrations** - Connect to external services (Kubiya managed)
  - name: custom-integrations
    description: >-
      ⚙️ **Custom Integrations** - User-defined integration instances with env
      vars, secrets, and files
  - name: integration-templates
    description: >-
      📦 **Integration Templates** - Pre-configured templates for common
      services (PostgreSQL, Redis, MongoDB, etc.)
  - name: secrets
    description: 🔑 **Secrets** - Secure credential storage and retrieval
  - name: teams
    description: 👥 **Teams** - Team management and collaboration
  - name: workflows
    description: 📊 **Workflows** - Multi-step automation and orchestration
  - name: executions
    description: ▶️ **Executions** - Track and monitor workflow runs
  - name: jobs
    description: ⏰ **Jobs** - Scheduled and webhook-triggered tasks
  - name: policies
    description: 🛡️ **Policies** - Access control and security policies
  - name: analytics
    description: 📈 **Analytics** - Usage metrics and performance monitoring
  - name: projects
    description: 📁 **Projects** - Project organization and management
  - name: environments
    description: 🌍 **Environments** - Environment configuration (dev, staging, prod)
  - name: models
    description: 🧠 **Models** - LLM model configuration and management
  - name: runtimes
    description: ⚡ **Runtimes** - Agent execution runtime environments
  - name: workers
    description: 👷 **Workers** - Worker registration and heartbeat monitoring
  - name: storage
    description: 💾 **Storage** - File storage and cloud integration
  - name: context-graph
    description: 🕸️ **Context Graph** - Knowledge graph and context management
  - name: temporal-workflows
    description: >-
      ⚙️ **Temporal Workflows** - Background workflows for context graph
      ingestion, connector operations, and scheduled jobs
  - name: templates
    description: 📝 **Templates** - Reusable configuration templates
paths:
  /api/v1/integration-templates:
    get:
      tags:
        - integration-templates
      summary: List Integration Templates
      description: |-
        List all pre-configured integration templates.

            **Available Categories:**
            - database (PostgreSQL, MySQL, MongoDB, Elasticsearch)
            - cache (Redis)
            - messaging (RabbitMQ, Kafka)
            - storage (S3, SFTP)
            - api (Generic REST API)

            **Filtering:**
            - `category`: Filter by category name
            - `tag`: Filter by single tag
            - `search`: Search in name and description

            **Usage:**
            Templates provide pre-configured integration definitions that can be
            customized when creating a custom integration instance.

            **Example:**
            ```
            GET /api/v1/integration-templates?category=database
            GET /api/v1/integration-templates?tag=sql
            GET /api/v1/integration-templates?search=postgres
            ```
      operationId: list_integration_templates_api_v1_integration_templates_get
      parameters:
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by category (database, cache, messaging, storage, api)
            title: Category
          description: Filter by category (database, cache, messaging, storage, api)
        - name: tag
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by tag (e.g., sql, nosql, messaging)
            title: Tag
          description: Filter by tag (e.g., sql, nosql, messaging)
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Search in template name and description
            title: Search
          description: Search in template name and description
      responses:
        '200':
          description: List of integration templates
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IntegrationTemplateSummary'
                title: >-
                  Response List Integration Templates Api V1 Integration
                  Templates Get
              example:
                - template_id: postgres
                  name: PostgreSQL Database
                  integration_type: postgres
                  description: PostgreSQL database with SSL support
                  icon: PostgreSQL
                  category: database
                  tags:
                    - database
                    - postgres
                    - sql
                    - relational
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IntegrationTemplateSummary:
      properties:
        template_id:
          type: string
          title: Template Id
        name:
          type: string
          title: Name
        integration_type:
          type: string
          title: Integration Type
        description:
          type: string
          title: Description
        icon:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon
        category:
          type: string
          title: Category
        tags:
          items:
            type: string
          type: array
          title: Tags
      type: object
      required:
        - template_id
        - name
        - integration_type
        - description
        - category
        - tags
      title: IntegrationTemplateSummary
      description: Brief template summary for listing
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Enter your Kubiya API token (format: Bearer <token>)'

````