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

# List agents

> Get the list of all your agents



## OpenAPI

````yaml /api-reference/openapi.json get /agents
openapi: 3.1.0
info:
  title: Calibrate Public API
  version: 0.1.0
  description: Programmatic API for CI/automation. Pass your key in the `X-API-Key` header.
servers:
  - url: https://api.calibrate.artpark.ai
    description: Production
security: []
paths:
  /agents:
    get:
      tags:
        - agents
      summary: List agents
      description: Get the list of all your agents
      operationId: list_agents_agents_get
      parameters:
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Case-insensitive substring search on `name`. Blank is a no-op
            title: Q
          description: Case-insensitive substring search on `name`. Blank is a no-op
        - name: limit
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                maximum: 1000000
                minimum: 1
              - type: 'null'
            description: Maximum number of items to return. Omit for no limit (all items)
            title: Limit
          description: Maximum number of items to return. Omit for no limit (all items)
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of items to skip before returning results
            default: 0
            title: Offset
          description: Number of items to skip before returning results
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse_AgentSummary_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    PaginatedResponse_AgentSummary_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/AgentSummary'
          type: array
          title: Items
          description: The page of results
        total:
          type: integer
          title: Total
          description: Total number of items matching the query, before pagination
        limit:
          anyOf:
            - type: integer
            - type: 'null'
          title: Limit
          description: The applied `limit` (null when unbounded)
        offset:
          type: integer
          title: Offset
          description: The applied `offset`
          default: 0
      type: object
      required:
        - items
        - total
      title: PaginatedResponse[AgentSummary]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AgentSummary:
      properties:
        uuid:
          type: string
          maxLength: 36
          minLength: 36
          title: Uuid
          description: ID of the agent
          examples:
            - f47ac10b-58cc-4372-a567-0e02b2c3d479
        name:
          type: string
          title: Name
          description: Name of the agent
        type:
          type: string
          enum:
            - agent
            - connection
          title: Type
          description: |-
            - `agent`: built inside Calibrate
            - `connection`: your existing agent connected to Calibrate
        updated_at:
          type: string
          title: Updated At
          description: When the agent was last updated (ISO 8601 UTC)
        connection_verified:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Connection Verified
          description: >-
            Whether the agent's connection has been verified, for a
            `type=connection` agent
      type: object
      required:
        - uuid
        - name
        - type
        - updated_at
      title: AgentSummary
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authentication

````