> ## 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.

# Admin List Strategy Output Specs

> List every shared strategy output spec.

Drives the dropdown in the team Strategy tab so an admin can wire a
team to a shared output shape. The full ``format_template`` is
included so the team-edit UI can render a preview of the spec the
admin is selecting without a second round-trip.



## OpenAPI

````yaml /openapi.json get /api/v1/admin/strategy-output-specs
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/admin/strategy-output-specs:
    get:
      tags:
        - Admin
      summary: Admin List Strategy Output Specs
      description: |-
        List every shared strategy output spec.

        Drives the dropdown in the team Strategy tab so an admin can wire a
        team to a shared output shape. The full ``format_template`` is
        included so the team-edit UI can render a preview of the spec the
        admin is selecting without a second round-trip.
      operationId: admin_list_strategy_output_specs_api_v1_admin_strategy_output_specs_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````