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

# Download result file

> Proxies a single file from the OME-Zarr result store. `path` is the path within the zarr store (e.g. `zarr.json`, `CD3/zarr.json`, `CD3/c/0/0/0`). Authenticated via the same bearer API key as the rest of `/api/v1/`; org-scoped to the job. Use this when walking the zarr tree from a client that does not have direct GCS credentials.



## OpenAPI

````yaml GET /jobs/{id}/results/files/{path}
openapi: 3.1.0
info:
  title: Strand AI Platform API
  version: v1
  description: >-
    REST surface for uploading WSIs, submitting Lattice inference jobs, and
    streaming results. All endpoints require an `Authorization: Bearer
    sk-strand-...` header. Generate keys at `/settings/api-keys`.
servers:
  - url: https://app.strandai.com/api/v1
    description: Production
security:
  - ApiKey: []
paths:
  /jobs/{id}/results/files/{path}:
    get:
      tags:
        - Jobs
      summary: Stream a single result file (API-key authenticated)
      description: >-
        Proxies a single file from the OME-Zarr result store. `path` is the path
        within the zarr store (e.g. `zarr.json`, `CD3/zarr.json`,
        `CD3/c/0/0/0`). Authenticated via the same bearer API key as the rest of
        `/api/v1/`; org-scoped to the job. Use this when walking the zarr tree
        from a client that does not have direct GCS credentials.
      operationId: getJobResultFile
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: path
          in: path
          required: true
          description: Path within the zarr store; slashes are not URL-encoded.
          schema:
            type: string
      responses:
        '200':
          description: File bytes (binary for chunks, JSON for metadata).
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
            application/json:
              schema:
                type: object
        '404':
          description: Job or file not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Job has not completed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
        message:
          type: string
        required:
          type: integer
          nullable: true
  securitySchemes:
    ApiKey:
      type: http
      scheme: bearer
      bearerFormat: sk-strand-XXXXXXXXXXXXXXXXXXXXXXXX

````