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

# Get account integrations

> Get all integrations from a business account.



## OpenAPI

````yaml GET /accounts/integrations
openapi: 3.0.0
info:
  title: Fliqr AI API
  version: '1.1'
  description: >-
    REST API for Fliqr AI. Authenticate every request with the `X-ACCESS-TOKEN`
    header.
servers:
  - url: https://app.fliqr.ai/api
    description: Production
security:
  - APIKeyHeader: []
tags:
  - name: Accounts
  - name: Contacts
  - name: AI Agents
  - name: Pipelines
  - name: Ecommerce
  - name: Appointment Management
  - name: Templates
paths:
  /accounts/integrations:
    get:
      tags:
        - Accounts
      summary: Get Account Integrations
      description: Get all integrations from a business account.
      operationId: getAccountIntegrations
      responses:
        '200':
          description: List of available integrations and their status
          content:
            application/json:
              schema:
                type: object
                properties:
                  openai:
                    type: object
                    properties:
                      active:
                        type: boolean
                  gemini:
                    type: object
                    properties:
                      active:
                        type: boolean
                  claude:
                    type: object
                    properties:
                      active:
                        type: boolean
                  xai:
                    type: object
                    properties:
                      active:
                        type: boolean
                  deepseek:
                    type: object
                    properties:
                      active:
                        type: boolean
                  google_sheets:
                    type: object
                    properties:
                      active:
                        type: boolean
                  email:
                    type: object
                    properties:
                      active:
                        type: boolean
              example:
                openai:
                  active: true
                gemini:
                  active: false
                claude:
                  active: true
                xai:
                  active: false
                deepseek:
                  active: true
                google_sheets:
                  active: false
                email:
                  active: true
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-ACCESS-TOKEN
      description: >-
        API access token from your Fliqr AI dashboard (**Settings → API**). Send
        it in the `X-ACCESS-TOKEN` header on every request.

````