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

# List task outputs

> List the named output artifacts a task has produced.



## OpenAPI

````yaml /openapi.json get /task/{task_id}/outputs
openapi: 3.1.0
info:
  title: Autumn Task API
  version: 1.0.0
  description: >-
    Start, stream, continue, execute, return to plan, and read sandboxed Autumn
    tasks. The public API surface is /task.
servers:
  - url: https://api.autumn.ai
security:
  - bearerAuth: []
  - apiKeyAuth: []
tags:
  - name: POST
    x-group: POST
  - name: GET
    x-group: GET
paths:
  /task/{task_id}/outputs:
    get:
      tags:
        - GET
      summary: List task outputs
      description: List the named output artifacts a task has produced.
      operationId: taskOutputs
      parameters:
        - $ref: '#/components/parameters/TaskId'
      responses:
        '200':
          description: Named output artifacts.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OutputsResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    TaskId:
      name: task_id
      in: path
      description: The task_id returned by `POST /task` or `POST /task/start`.
      required: true
      schema:
        type: string
        example: 8fab6f34
  schemas:
    OutputsResponse:
      type: object
      properties:
        outputs:
          type: array
          items:
            type: object
            additionalProperties: true
          description: Named output artifacts (id, kind, path, row counts).
      additionalProperties: true
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        detail:
          type: string
      additionalProperties: true
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Autumn API key
      description: 'Use `Authorization: Bearer YOUR_AUTUMN_API_KEY`.'
      x-default: YOUR_AUTUMN_API_KEY
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Alternate API-key header. Use the same Autumn API key.
      x-default: YOUR_AUTUMN_API_KEY

````