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

# List integrations

> List integrations



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/orgs/{orgSlug}/integrations
openapi: 3.0.3
info:
  title: Tolmo API
  version: 1.0.0
  description: >-
    The Tolmo REST API. Every endpoint is scoped to one organization and
    authenticated with an API token.
servers:
  - url: https://api.tolmo.com
    description: Production
security:
  - bearerAuth: []
paths:
  /api/v1/orgs/{orgSlug}/integrations:
    get:
      tags:
        - integrations
      summary: List integrations
      description: List integrations
      operationId: apiListIntegrations
      parameters:
        - schema:
            type: string
          in: path
          name: orgSlug
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    provider:
                      type: string
                    providerLabel:
                      type: string
                    alias:
                      type: string
                    config:
                      type: object
                      additionalProperties: {}
                    metadata:
                      nullable: true
                      type: object
                      additionalProperties: {}
                    docsUrl:
                      type: string
                    secrets:
                      type: array
                      items: {}
                    isNew:
                      type: boolean
                  required:
                    - id
                    - provider
                    - providerLabel
                    - alias
                    - config
                    - docsUrl
                    - secrets
                  additionalProperties: false
        '412':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpError'
components:
  schemas:
    HttpError:
      type: object
      properties:
        statusCode:
          type: number
        code:
          type: string
        error:
          type: string
        message:
          type: string
      title: HttpError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Tolmo API token, sent as `Authorization: Bearer <token>`. Either a
        user token (`usr_tok.*`, minted by `tolmo auth login`, scoped to your
        own permissions) or an org API token created in the Tolmo app, for CI
        and automation.

````