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

# Get results URL

> Returns a signed GCS URL for the OME-Zarr root metadata (`zarr.json`) plus the `resultBasePath` of the zarr store. Useful for clients that already have GCS credentials. SDK clients should generally prefer `GET /jobs/{id}/results/files/{path}` (API-key authenticated) for walking the tree.



## OpenAPI

````yaml GET /jobs/{id}/results
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:
    get:
      tags:
        - Jobs
      summary: Get signed download URL for results
      description: >-
        Returns a signed GCS URL for the OME-Zarr root metadata (`zarr.json`)
        plus the `resultBasePath` of the zarr store. Useful for clients that
        already have GCS credentials. SDK clients should generally prefer `GET
        /jobs/{id}/results/files/{path}` (API-key authenticated) for walking the
        tree.
      operationId: getJobResults
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Signed URL
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Results'
        '409':
          description: Job has not completed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Results:
      type: object
      required:
        - resultUrl
        - expiresAt
      properties:
        resultUrl:
          type: string
        resultBasePath:
          type: string
        expiresAt:
          type: string
          format: date-time
    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

````