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

# Chat Agents

> The agents a conversation delegated to. By default the most recent delegating turn's (or the one named by root_execution_id); with scope=chat every turn's, as the dashboard's agent map shows them. Each agent carries its label, slug, role, model, status, steps, tokens and a 400-character head of its report.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/bot/chat/agents
openapi: 3.0.0
info:
  title: BoostGPT API
  version: 1.0.0
  description: API for managing AI agents with memory capabilities
servers:
  - url: https://api.boostgpt.co
    description: Production server
security:
  - BearerAuth: []
tags:
  - name: Agent
    description: Operations for managing AI agents
  - name: Memory
    description: Operations for managing agent memory sources
  - name: Chat
    description: Operations for chatting with agents and managing conversations
  - name: Tools
    description: Operations for managing agent tools and MCP server integrations
  - name: Analytics
    description: Operations for retrieving agent statistics and analytics
  - name: Tasks
    description: >-
      Scheduled tasks — recurring work an agent performs on its own. Replaces
      the Heartbeat API.
  - name: Email
    description: Operations for managing agent email functionality
  - name: Workflows
    description: Operations for managing agent workflow automations
  - name: Workspace
    description: Operations for managing agent workspaces and files
paths:
  /v1/bot/chat/agents:
    get:
      tags:
        - Chat
      summary: Chat Agents
      description: >-
        The agents a conversation delegated to. By default the most recent
        delegating turn's (or the one named by root_execution_id); with
        scope=chat every turn's, as the dashboard's agent map shows them. Each
        agent carries its label, slug, role, model, status, steps, tokens and a
        400-character head of its report.
      parameters:
        - name: project_id
          in: query
          required: true
          schema:
            type: string
          description: Project ID
        - name: bot_id
          in: query
          required: true
          schema:
            type: string
          description: Agent ID
        - name: chat_id
          in: query
          required: true
          schema:
            type: string
          description: Chat ID
        - name: scope
          in: query
          required: false
          schema:
            type: string
            enum:
              - turn
              - chat
          description: turn (default) or chat
        - name: root_execution_id
          in: query
          required: false
          schema:
            type: string
          description: A specific turn, when scope is turn
      responses:
        '200':
          description: Agents, or turns with their agents
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Enter your API key

````