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

# Browse integrations

> Browse the catalog of available integrations (tools, LLM providers, knowledge providers) with filtering and pagination. Requires the organization admin or owner role.

Note: the backend route is `GET /integrations/browse`; the nav exposes it as `GET /integrations` (see openQuestions).



## OpenAPI

````yaml /api-reference/openapi.json get /integrations
openapi: 3.0.3
info:
  title: ModuleX API
  version: 0.1.2
  description: >-
    ModuleX REST API. Authenticate with a user API key (`Authorization: Bearer
    mx_live_*`, or the `X-API-KEY` header) and supply the organization context
    header `X-Organization-ID` on org-scoped endpoints. Routers carry NO `/v1`
    version segment. Billing-gated surfaces (workflow run, managed knowledge
    search) reject before any write with a flat `DenialEnvelope` (402/403/429).
servers:
  - url: https://api.modulex.dev
    description: Production
security:
  - bearerAuth: []
    orgHeader: []
tags:
  - name: Workflows
    description: Create, read, update and delete workflow definitions.
  - name: Runs
    description: Execute workflows. Subject to the billing admission gate.
  - name: Schedules
    description: Recurring (cron / interval) workflow executions.
  - name: Knowledge
    description: Knowledge bases and semantic search.
  - name: Credentials
    description: Integration credentials (API key, bearer, OAuth2, ModuleX-managed).
  - name: Integrations
    description: Catalog of available tools, LLM providers and knowledge providers.
  - name: Organizations
    description: Organization management.
  - name: API keys
    description: User-owned API keys for programmatic access.
paths:
  /integrations:
    get:
      tags:
        - Integrations
      summary: Browse integrations
      description: >-
        Browse the catalog of available integrations (tools, LLM providers,
        knowledge providers) with filtering and pagination. Requires the
        organization admin or owner role.


        Note: the backend route is `GET /integrations/browse`; the nav exposes
        it as `GET /integrations` (see openQuestions).
      operationId: listIntegrations
      parameters:
        - name: category
          in: query
          required: false
          description: Filter by category (e.g. search, ai, vector-database).
          schema:
            type: string
        - name: type
          in: query
          required: false
          description: Filter by integration type.
          schema:
            type: string
            enum:
              - tool
              - llm_provider
              - knowledge_provider
        - name: auth_type
          in: query
          required: false
          description: >-
            Filter by supported auth type (modulex_key, api_key, oauth2,
            bearer_token).
          schema:
            type: string
        - name: search
          in: query
          required: false
          description: Search in name and description.
          schema:
            type: string
        - name: include_details
          in: query
          required: false
          description: >-
            Include actions, models and auth_schemas. Set false for lighter
            responses.
          schema:
            type: boolean
            default: true
        - name: paginate
          in: query
          required: false
          description: Enable pagination. Set false to return all results.
          schema:
            type: boolean
            default: true
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
            minimum: 1
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            default: 50
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: A page of integrations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationBrowseResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  schemas:
    IntegrationBrowseResponse:
      type: object
      required:
        - integrations
        - total
        - page
        - page_size
        - has_more
      properties:
        integrations:
          type: array
          items:
            $ref: '#/components/schemas/IntegrationMetadata'
        total:
          type: integer
        page:
          type: integer
        page_size:
          type: integer
        has_more:
          type: boolean
    IntegrationMetadata:
      type: object
      properties:
        name:
          type: string
        display_name:
          type: string
        description:
          type: string
        logo:
          type: string
          nullable: true
        app_url:
          type: string
          nullable: true
        docs_url:
          type: string
          nullable: true
        categories:
          type: array
          items:
            type: string
        integration_type:
          type: string
        version:
          type: string
          nullable: true
        status:
          type: string
          default: active
        recommended:
          type: boolean
          default: false
        actions:
          type: array
          items:
            type: object
            additionalProperties: true
          nullable: true
        models:
          type: array
          items:
            type: object
            additionalProperties: true
          nullable: true
        auth_schemas:
          type: array
          items:
            type: object
            additionalProperties: true
          nullable: true
    Error:
      type: object
      description: Standard FastAPI error response.
      properties:
        detail:
          description: >-
            Human-readable error message, or a structured object (some endpoints
            return `{message, code, ...}`).
          oneOf:
            - type: string
            - type: object
              additionalProperties: true
  responses:
    Unauthorized:
      description: >-
        Authentication required or invalid. Provide `Authorization: Bearer
        <key>` or `X-API-KEY`.
      headers:
        WWW-Authenticate:
          schema:
            type: string
          description: Bearer
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The caller lacks the required role or access to the resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        User API key: `Authorization: Bearer mx_live_*`. The `X-API-KEY:
        mx_live_*` header is also accepted.
    orgHeader:
      type: apiKey
      in: header
      name: X-Organization-ID
      description: Required organization context for org-scoped endpoints.

````