> ## 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 information

> Get business account details.



## OpenAPI

````yaml GET /accounts/me
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/me:
    get:
      tags:
        - Accounts
      summary: Get Account Information
      description: Get business account details.
      operationId: getAccountInformation
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  page_id:
                    type: integer
                    format: int64
                  name:
                    type: string
                  active:
                    type: boolean
                    description: If false the admins of the bot can't access the dashboard.
                  created:
                    type: integer
                    format: int64
                    description: Timestamp representing the date the bot was created
                  total_users:
                    type: integer
                    format: int64
                    description: The total number of contacts.
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.

````