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

# List Integrations

> List integrations enabled for the caller's organization. Use the returned `slug` as the `integration_slug` when creating organization-scoped custom field mappings.



## OpenAPI

````yaml get /api/v1/lookup/integrations
openapi: 3.1.0
info:
  title: Bindbee APIs
  version: 0.1.0
servers:
  - url: https://api.bindbee.dev
  - url: https://api-eu.bindbee.dev
security: []
paths:
  /api/v1/lookup/integrations:
    get:
      tags:
        - Lookup
      summary: List Integrations
      description: >-
        List integrations enabled for the caller's organization. Each row
        carries the categories the org has enabled for that integration. Use
        `slug` as `integration_slug` when creating org-level custom field
        mappings.
      operationId: list_integrations_api_v1_lookup_integrations_get
      parameters:
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/Category'
              - type: 'null'
            description: Filter to integrations the org has enabled for this category.
            examples:
              - HRIS
            title: Category
          description: Filter to integrations the org has enabled for this category.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    Category:
      type: string
      enum:
        - HRIS
        - ATS
        - LMS
      title: Category
    IntegrationListResponse:
      properties:
        integrations:
          items:
            $ref: '#/components/schemas/IntegrationListItem'
          type: array
          title: Integrations
      type: object
      required:
        - integrations
      title: IntegrationListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    IntegrationListItem:
      properties:
        slug:
          type: string
          title: Slug
          description: >-
            Stable identifier for the integration. Use this as
            `integration_slug` when creating org-level mappings.
          examples:
            - workday
        display_name:
          type: string
          title: Display Name
          description: Human-readable name of the integration.
          examples:
            - Workday
        categories:
          items:
            $ref: '#/components/schemas/Category'
          type: array
          title: Categories
          description: >-
            Categories of unified models the org has enabled for this
            integration.
          examples:
            - - HRIS
      type: object
      required:
        - slug
        - display_name
        - categories
      title: IntegrationListItem
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````