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

# List Strategy Brief History

> List every past (brief, strategy) pair for the team, newest first.

Drives the "Strategy Briefs" sidebar sub-tab. Each row carries only a
preview of the brief — full text is fetched on demand via the detail
route below to keep list responses cheap on teams that regenerate often.



## OpenAPI

````yaml /openapi.json get /api/v1/teams/{team_id}/strategy/briefs
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/teams/{team_id}/strategy/briefs:
    get:
      tags:
        - Teams
      summary: List Strategy Brief History
      description: |-
        List every past (brief, strategy) pair for the team, newest first.

        Drives the "Strategy Briefs" sidebar sub-tab. Each row carries only a
        preview of the brief — full text is fetched on demand via the detail
        route below to keep list responses cheap on teams that regenerate often.
      operationId: list_strategy_brief_history_api_v1_teams__team_id__strategy_briefs_get
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategyBriefHistoryListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    StrategyBriefHistoryListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/StrategyBriefHistoryItem'
          type: array
          title: Items
      type: object
      required:
        - items
      title: StrategyBriefHistoryListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    StrategyBriefHistoryItem:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        created_at:
          type: string
          format: date-time
          title: Created At
        cycle_instance_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Cycle Instance Id
        brief_preview:
          type: string
          title: Brief Preview
      type: object
      required:
        - id
        - created_at
        - brief_preview
      title: StrategyBriefHistoryItem
      description: Row in the Strategy Briefs list — one per past generation.
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````