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

# List Integration Details

> Filterable catalog of the vendors Leen can connect to, with each vendor's version, credential parameters, categories and data exports. A superset of the Connectors endpoint.

An integration is a vendor that Leen can connect to. This endpoint returns the full catalog of supported integrations with their details; the response is the same for every organization, so you can call it without first creating a connection. Use the `category` query parameter to narrow the list to one or more domains.

Each item's `integration_id` (for example `TENABLE`, `SNYK`, `WIZ_CODE`) is the exact value to pass as `vendor` when [creating a connection](/api-reference/creating-a-connection). `data_exports` lists the data types that integration produces, and `categories` maps to the domain sections of this documentation (AppSec, EDR, VMS, and so on). `parameters` describes the credential form fields for that integration — names and types only, never secret values.


## OpenAPI

````yaml get /integrations/
openapi: 3.1.0
info:
  title: Leen Security API
  version: 0.0.1
servers:
  - description: Production API (US)
    url: https://api.leen.dev/v1
  - description: Production API (EU)
    url: https://api.eu-c1.leen.dev/v1
  - description: Production API (APAC)
    url: https://api.ap-se2.leen.dev/v1
security: []
paths:
  /integrations/:
    get:
      tags:
        - integration
      summary: List Integrations
      description: List all integrations with optional filters.
      operationId: list_integrations
      parameters:
        - description: Offset index of items (starting from 0)
          in: query
          name: offset
          required: false
          schema:
            default: 0
            description: Offset index of items (starting from 0)
            minimum: 0
            title: Offset
            type: integer
        - description: Limit size (page size)
          in: query
          name: limit
          required: false
          schema:
            default: 100
            description: Limit size (page size)
            minimum: 0
            title: Limit
            type: integer
        - description: Filter by category, comma separated
          in: query
          name: category
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by category, comma separated
            title: Category
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/OffsetPaginatedResponse_IntegrationRespModel_
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - API-Key: []
components:
  schemas:
    OffsetPaginatedResponse_IntegrationRespModel_:
      properties:
        count:
          description: Number of items return in the response
          title: Count
          type: integer
        items:
          description: The records on this page.
          items:
            $ref: '#/components/schemas/IntegrationRespModel'
          title: Items
          type: array
        total:
          anyOf:
            - type: integer
            - type: 'null'
          description: Total number of items that can be returned
          title: Total
      required:
        - count
        - items
      title: OffsetPaginatedResponse[IntegrationRespModel]
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    IntegrationRespModel:
      properties:
        categories:
          description: Category of the integration
          items:
            $ref: '#/components/schemas/ConnectionCategoriesEnum'
          title: Categories
          type: array
        data_exports:
          description: Supported data exports by Integration
          items:
            $ref: '#/components/schemas/DataExportTypesEnum'
          title: Data Exports
          type: array
        deprecated:
          default: false
          description: Status of the Integration
          title: Deprecated
          type: boolean
        description:
          description: Description of the integration
          title: Description
          type: string
        icon:
          contentMediaType: application/octet-stream
          description: Icon of the integration
          title: Icon
          type: string
        id:
          description: Unique ID of the Integration
          format: uuid
          title: Id
          type: string
        integration_id:
          description: Integration ID
          title: Integration Id
          type: string
        name:
          description: Name of the integration
          title: Name
          type: string
        parameters:
          description: Configuration parameters of the integration
          items:
            additionalProperties: true
            type: object
          title: Parameters
          type: array
        version:
          description: Version of the integration
          title: Version
          type: string
      required:
        - id
        - name
        - integration_id
        - version
        - description
        - parameters
        - icon
        - categories
        - data_exports
      title: IntegrationRespModel
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
    ConnectionCategoriesEnum:
      enum:
        - VMS
        - APPSEC
        - EDR
        - CSPM
        - IDP
        - IDS
        - ITSM
        - TPRM
        - GRC
        - MDM
        - EMAIL_SECURITY
      title: ConnectionCategoriesEnum
      type: string
    DataExportTypesEnum:
      enum:
        - alerts
        - compliances
        - compliance_findings
        - config_users
        - cspm_alerts
        - device_groups
        - device_policies
        - devices
        - idp
        - idp_alerts
        - idp_audit_logs
        - idp_policies
        - issues
        - organization_identities
        - sast_issues
        - sca_issues
        - vms_scan_configs
        - vulnerabilities
        - resources
        - vulnerability_findings_v2
        - grc_entity
        - grc_control
        - grc_evidence
        - grc_assessment_question
        - grc_assessment
        - tprm
        - tprm_company
        - tprm_finding
        - findings
        - itsm_users
        - itsm_groups
        - itsm_projects
        - itsm_tickets
        - itsm_attachments
        - itsm_comments
        - applications
        - siem_events
      title: DataExportTypesEnum
      type: string
  securitySchemes:
    API-Key:
      in: header
      name: X-API-KEY
      type: apiKey

````