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

# Get backtest detail, status, and result

> When the backtest succeeds, the result payload includes summary metrics and artifact URLs if available.



## OpenAPI

````yaml /openapi/traseq-public-agent.json get /public/v1/backtests/{id}
openapi: 3.0.0
info:
  title: Traseq Agent API
  description: >-
    Public, versioned API for external integrations and AI agents. Includes API
    key management and machine-readable OpenAPI.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags:
  - name: API Keys
    description: Workspace-scoped API key management
  - name: Agent API
    description: Public API for external integrations and AI agents
paths:
  /public/v1/backtests/{id}:
    get:
      tags:
        - Agent API
      summary: Get backtest detail, status, and result
      description: >-
        When the backtest succeeds, the result payload includes summary metrics
        and artifact URLs if available.
      operationId: PublicOpenApiController_getBacktest
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Backtest detail and result
      security:
        - traseq-api-key: []
components:
  securitySchemes:
    traseq-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: Workspace API key for public agent API access

````