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

# Download a file

> Download an input or result file.

Returns `302 Found` with a `Location` header pointing at a download link that expires in about 5 minutes. Use a client that follows redirects, such as `curl -L`.


## OpenAPI

````yaml api-reference/openapi.json GET /experimental/files/{file_id}/content
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/files/{file_id}/content:
    get:
      tags:
        - files
      summary: Download a file
      description: Download an input or result file.
      operationId: download_file_experimental_files__file_id__content_get
      parameters:
        - name: file_id
          in: path
          required: true
          schema:
            type: string
            title: File Id
      responses:
        '200':
          description: File contents returned inline.
          content:
            application/json:
              schema: {}
            application/octet-stream: {}
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Requires an API key. See the Authentication guide.

````