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

# Get Agent Track History

> Returns a paginated list of agent version track history entries. Results can be filtered by track name, support level, version, or release date range.



## OpenAPI

````yaml /openapi/public-api-endpoint-reference.yaml get /v1/agents/releases
openapi: 3.1.0
info:
  title: Maia Public REST API
  version: '1.0'
servers:
  - description: EU1
    url: https://eu1.api.matillion.com/dpc
  - description: US1
    url: https://us1.api.matillion.com/dpc
security:
  - bearerAuth: []
tags:
  - description: Manage Schedules
    name: Schedules
  - description: Manage Connections
    name: Connections
  - description: Operations for managing Project Variables
    name: Project Variables
  - description: Manage Pipelines
    name: Pipelines
  - description: Review pipelines against quality rules
    name: Pipeline Quality Review
  - description: Execute tests within a project
    name: Test Execution
  - description: Manage your AI agent tasks
    name: AI Agent Tasks
  - description: SCIM endpoints for user/group permission management
    name: Directory Integration
  - description: Publish shared pipeline artifacts
    name: Shared Pipeline Artifacts
  - description: Manage Repositories
    name: Repositories
  - description: Report on Credit Consumption
    name: Consumption
  - description: Manage Artifacts
    name: Artifacts
  - description: Operations for data lineage and governance
    name: Data Lineage
  - description: Manage Streaming Pipelines
    name: Streaming Pipelines
  - description: Execute a pipeline
    name: Pipeline Execution
  - description: ''
    name: Environments
  - description: ''
    name: Projects
  - description: Manage Agents
    name: Agents
  - description: Operations for managing Environment-level Overrides of Project Variables
    name: Project Variable Environment Overrides
  - description: Query audit events
    name: Audit Events
  - description: Connector Profiles
    name: Connectors
paths:
  /v1/agents/releases:
    get:
      tags:
        - Agents
      summary: Get Agent Track History
      description: >-
        Returns a paginated list of agent version track history entries. Results
        can be filtered by track name, support level, version, or release date
        range.
      operationId: getAgentTrackHistory
      parameters:
        - description: 'Filter by track name. Valid values: CURRENT, STABLE'
          in: query
          name: trackName
          required: false
          schema:
            type: string
        - description: >-
            Filter by support level. Valid values: SUPPORTED, UNSUPPORTED,
            DEPRECATED
          in: query
          name: supportLevel
          required: false
          schema:
            type: string
        - description: Filter by specific agent version
          in: query
          name: version
          required: false
          schema:
            type: string
        - description: Return only entries released before this date (ISO 8601 format)
          in: query
          name: releasedBefore
          required: false
          schema:
            type: string
        - description: Return only entries released after this date (ISO 8601 format)
          in: query
          name: releasedAfter
          required: false
          schema:
            type: string
        - description: Page number (0-indexed)
          example: '0'
          in: query
          name: page
          schema: {}
        - description: Number of records per page (from 1 to 100)
          example: '25'
          in: query
          name: size
          schema: {}
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentTrackHistoryResponse'
          description: Success
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
                example:
                  type: https://api.matillion.com/problems/bad-request
                  title: Bad Request
                  status: 400
                  detail: Failed to read request. Please check your request body.
                  instance: /v1/agents/releases
          description: Wrong request parameters used
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
                example:
                  type: https://api.matillion.com/problems/forbidden
                  title: Forbidden
                  status: 403
                  detail: You do not have permission to access this resource.
                  instance: /v1/agents/releases
          description: Forbidden
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
                example:
                  type: https://api.matillion.com/problems/internal-server-error
                  title: Internal Server Error
                  status: 500
                  detail: Unexpected error occurred while processing the request.
                  instance: /v1/agents/releases
          description: Unexpected error occurred
components:
  schemas:
    AgentTrackHistoryResponse:
      type: object
      properties:
        page:
          type: integer
          format: int32
          description: The 0-indexed page number of the returned results.
          example: 1
        results:
          type: array
          description: List of agent track history entries for the current page
          items:
            $ref: '#/components/schemas/AgentTrackHistory'
        size:
          type: integer
          format: int32
          description: The size of each page of results.
          example: 20
        total:
          type: integer
          format: int64
          description: Total number of available results across all pages.
          example: 100
    ProblemDetail:
      type: object
      properties:
        detail:
          type: string
        instance:
          type: string
        status:
          type: integer
          format: int32
        title:
          type: string
        type:
          type: string
          format: uri
        violations:
          type: array
          items:
            type: string
    AgentTrackHistory:
      type: object
      properties:
        releasedAt:
          type: string
          description: The ISO 8601 timestamp when this version was released on the track
        supportLevel:
          type: string
          description: >-
            The support level for this entry, uppercase (e.g. SUPPORTED,
            UNSUPPORTED, DEPRECATED)
        trackName:
          type: string
          description: The name of the track, uppercase (e.g. CURRENT, STABLE)
        version:
          type: string
          description: The agent version string for this history entry
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      description: a valid bearer token
      scheme: bearer
      type: http

````