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

# List task results

> List the files the agent produced under a task, each with a download link.

Each file comes with a download URL. `reconcile` (default `true`) includes files the agent wrote during this request. `with_urls` (default `true`) attaches a download URL to each file.

An unknown `task_id` returns `404`, so an empty `data` array means the task produced no files.


## OpenAPI

````yaml api-reference/openapi.json GET /experimental/tasks/{task_id}/results
openapi: 3.1.0
info:
  title: Phylo API — V1
  description: Public API for Phylo, the biomedical AI agent platform.
  version: 0.1.0
servers:
  - url: https://api.phylo.bio/v1
    description: >-
      Self-serve platform. Enterprise customers should contact the Phylo team to
      get their API base URL. Learn more at https://phylo.bio/enterprise.
security: []
paths:
  /experimental/tasks/{task_id}/results:
    get:
      tags:
        - results
      summary: List task results
      description: >-
        List the files the agent produced under a task, each with a download
        link.
      operationId: list_task_results_experimental_tasks__task_id__results_get
      parameters:
        - name: task_id
          in: path
          required: true
          schema:
            type: string
            title: Task Id
        - name: reconcile
          in: query
          required: false
          schema:
            type: boolean
            description: Include files the agent wrote during this request.
            default: true
            title: Reconcile
          description: Include files the agent wrote during this request.
        - name: with_urls
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              Include a download URL for each file. Set to false for a faster
              response.
            default: true
            title: With Urls
          description: >-
            Include a download URL for each file. Set to false for a faster
            response.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Maximum objects to return.
            default: 20
            title: Limit
          description: Maximum objects to return.
        - name: before_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Before Id
        - name: after_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: After Id
      responses:
        '200':
          description: Page of result files, each with a download URL.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultList'
              example:
                type: list
                data:
                  - type: result_file
                    result_id: res_016YNAz7cvmPXcqvGoR1U57t
                    name: BRCA1_ClinVar_variant_summary.md
                    size_bytes: 6149
                    mime_type: text/markdown
                    created_at: '2026-08-12T21:23:32Z'
                    download_url: >-
                      https://<bucket>.s3.us-west-2.amazonaws.com/orgs/<org>/users/<user>/results/projects/proj_6b3606df1c/sessions/sess_4c1a28c0e48b/BRCA1_ClinVar_variant_summary.md?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=3600&X-Amz-Signature=...
                has_more: false
                first_id: res_016YNAz7cvmPXcqvGoR1U57t
                last_id: res_016YNAz7cvmPXcqvGoR1U57t
      security:
        - bearerAuth: []
components:
  schemas:
    ResultList:
      properties:
        type:
          type: string
          const: list
          title: Type
          default: list
        data:
          items:
            $ref: '#/components/schemas/ResultFile'
          type: array
          title: Data
        has_more:
          type: boolean
          title: Has More
          default: false
        first_id:
          anyOf:
            - type: string
            - type: 'null'
          title: First Id
        last_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Id
      type: object
      required:
        - data
      title: ResultList
      description: '`first_id` and `last_id` carry `result_id` values.'
    ResultFile:
      properties:
        type:
          type: string
          const: result_file
          title: Type
          default: result_file
        result_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Result Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Size Bytes
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Mime Type
        message_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Message Id
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        download_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Download Url
      type: object
      title: ResultFile
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Requires an API key. See the Authentication guide.

````