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

# List Agent Types

> List all available agent types with their metadata



## OpenAPI

````yaml get /api/v2/agents/types
openapi: 3.0.0
info:
  version: 1.0.0
  title: Octave API
  description: API for Octave workspace management and AI-powered content generation
servers:
  - url: https://app.octavehq.com
security:
  - ApiKeyAuth: []
paths:
  /api/v2/agents/types:
    get:
      tags:
        - Agents
      summary: List Agent Types
      description: List all available agent types with their metadata
      operationId: listAgentTypes
      responses:
        '200':
          description: List agent types successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  total:
                    type: number
                    example: 9
                    description: Total number of agent types
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                          enum:
                            - PROSPECTOR
                            - CONTENT
                            - EMAIL
                            - ENRICH_PERSON
                            - ENRICH_COMPANY
                            - QUALIFY_PERSON
                            - QUALIFY_COMPANY
                            - CALL_PREP
                            - CONTEXT
                          description: The agent type identifier
                        name:
                          type: string
                          description: The human-readable name of the agent type
                        description:
                          type: string
                          description: A description of what this agent type does
                        category:
                          type: string
                          description: The category this agent type belongs to
                      required:
                        - type
                        - name
                        - description
                        - category
                required:
                  - _metadata
                  - total
                  - data
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  message:
                    type: string
                required:
                  - _metadata
                  - message
      deprecated: false
components:
  schemas:
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          example: 0
          description: API usage
        requestId:
          type: string
          example: requestId
          description: Request ID
        message:
          type: string
          example: message
          description: Message
        timestamp:
          type: string
          example: '2021-01-01T00:00:00.000Z'
          description: Timestamp
      required:
        - requestId
        - timestamp
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````