> ## 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 AI agents

> Get list of AI agents



## OpenAPI

````yaml GET /agents/
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:
  /agents/:
    get:
      tags:
        - AI Agents
      summary: Get AI Agents
      description: Get list of AI agents
      operationId: getAIAgents
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Agent'
                    maxItems: 100
                type: object
        '400':
          description: Invalid parameters
components:
  schemas:
    Agent:
      type: object
      properties:
        id:
          type: number
          format: int64
        name:
          type: string
        created_by:
          type: number
          format: int64
        created_at:
          type: string
          format: date-time
          description: Date in UTC. Example 2022-10-12 14:40:00
      xml:
        name: Agent
  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.

````