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

# List Agent Type Instances

> List instances for an agent type.

Stub endpoint - returns empty list until AgentInstance storage is implemented.

Returns:
    List of agent instances (currently empty).

Raises:
    NotFoundError: If agent type not found or belongs to another org.



## OpenAPI

````yaml https://api.pragmatiks.io/openapi.json get /agents/types/{agent_type_id}/instances
openapi: 3.1.0
info:
  title: Pragma API
  version: 0.1.0
servers: []
security: []
paths:
  /agents/types/{agent_type_id}/instances:
    get:
      tags:
        - agent-types
      summary: List Agent Type Instances
      description: >-
        List instances for an agent type.


        Stub endpoint - returns empty list until AgentInstance storage is
        implemented.


        Returns:
            List of agent instances (currently empty).

        Raises:
            NotFoundError: If agent type not found or belongs to another org.
      operationId: agent-types-list_agent_type_instances
      parameters:
        - name: agent_type_id
          in: path
          required: true
          schema:
            type: string
            title: Agent Type Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  additionalProperties: true
                  type: object
                title: Response Agent-Types-List Agent Type Instances
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````