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

# List integrations

> Lists all available integrations and their current connection status for the authenticated workspace. Returns each integration type/provider combination with any active connections.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/integrations
openapi: 3.0.0
info:
  description: >-
    REST API for accessing and managing your Nex data. Generate API keys from
    the Nex web UI and use them to authenticate requests.
  title: Nex Developer API
  contact: {}
  version: '1.0'
servers:
  - url: https://app.nex.ai/api/developers
security: []
paths:
  /v1/integrations:
    get:
      tags:
        - Integrations
      summary: List integrations
      description: >-
        Lists all available integrations and their current connection status for
        the authenticated workspace. Returns each integration type/provider
        combination with any active connections.
      operationId: listIntegrations
      responses:
        '200':
          description: List of integrations with connection status
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/developer.IntegrationResponse'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httpx.APIError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httpx.APIError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    developer.IntegrationResponse:
      type: object
      properties:
        type:
          type: string
          description: Integration type
          enum:
            - email
            - calendar
            - messaging
            - crm
          example: email
        provider:
          type: string
          description: Integration provider
          enum:
            - google
            - microsoft
            - slack
            - attio
            - hubspot
            - salesforce
          example: google
        display_name:
          type: string
          description: Human-readable name of the integration
          example: Gmail
        description:
          type: string
          description: Description of the integration
          example: >-
            Connect to your Gmail account to automatically sync emails, create
            contacts, and update context.
        connections:
          type: array
          description: Active connections for this integration
          items:
            $ref: '#/components/schemas/developer.ConnectionResponse'
    httpx.APIError:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
    developer.ConnectionResponse:
      type: object
      properties:
        id:
          type: integer
          description: Connection ID
          example: 12345
        status:
          type: string
          description: Connection status
          example: active
        identifier:
          type: string
          description: Account identifier (email address, username, etc.)
          example: user@example.com
  securitySchemes:
    ApiKeyAuth:
      description: 'API key for authentication (format: "Bearer YOUR_API_KEY")'
      type: apiKey
      name: Authorization
      in: header

````