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

# Get Agent

> Returns one agent by its ID.



## OpenAPI

````yaml GET /api/developers/v1/agents/{id}
openapi: 3.0.3
info:
  title: Developer API
  version: 1.0.0
servers:
  - url: https://app.fluently.at
security:
  - bearerAuth: []
paths:
  /api/developers/v1/agents/{id}:
    get:
      tags:
        - Agents
      summary: Get a single agent
      description: Returns one agent by its ID.
      operationId: getAgentById
      parameters:
        - name: id
          in: path
          description: The agent’s ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Agent detail
          content:
            application/json:
              schema:
                type: object
                properties:
                  agent:
                    $ref: '#/components/schemas/DeveloperAgentDetailResponse'
                required:
                  - agent
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    DeveloperAgentDetailResponse:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        numbers:
          type: array
          items:
            type: string
        company:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - name
        - numbers
        - company
        - createdAt
        - updatedAt
    BadRequestResponse:
      type: object
      properties:
        message:
          type: string
      required:
        - message
    UnauthorizedResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
      required:
        - success
        - message
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
      required:
        - success
        - message
  responses:
    BadRequest:
      description: Invalid or missing parameter
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/BadRequestResponse'
    Unauthorized:
      description: Missing or invalid Authorization header or token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UnauthorizedResponse'
    InternalError:
      description: Internal server error during authentication or processing
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````