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

> Fetch a snapshot of a prediction job's status, progress, reserved credits, and result path. Useful for polling clients that do not consume the SSE stream.



## OpenAPI

````yaml GET /jobs/{id}
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}:
    get:
      tags:
        - Jobs
      summary: Get job status
      operationId: getJob
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Job
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Job'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Job:
      type: object
      required:
        - id
        - status
        - markers
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
        progress:
          type: number
          nullable: true
        reservedCredits:
          type: integer
          nullable: true
        markers:
          type: array
          items:
            type: string
        model:
          type: string
          nullable: true
          description: >-
            Canonical Lattice version the job ran under (e.g. `"v0.4"`,
            `"v0.5"`). Always a `v0.X` label — the platform normalizes legacy
            aliases (`"v10-fullpanel"` → `"v0.4"`, `"v10-fullpanel-v2"` →
            `"v0.5"`) before persisting. Historical jobs may surface `"v0.3"`
            (sunset; readable but not dispatchable). `null` only on very old
            rows that predate the field.
        metadata:
          type: object
          nullable: true
          description: >-
            Free-form job metadata. SDK-relevant fields include
            `modal.endpoint_url` (the Modal URL the dispatcher hit) and
            `modal.model` (mirror of the top-level `model`).
          properties:
            modal:
              type: object
              properties:
                endpoint_url:
                  type: string
                  nullable: true
                model:
                  type: string
                  nullable: true
        createdAt:
          type: string
          format: date-time
          nullable: true
        startedAt:
          type: string
          format: date-time
          nullable: true
        completedAt:
          type: string
          format: date-time
          nullable: true
        errorMessage:
          type: string
          nullable: true
        resultsAvailable:
          type: boolean
    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

````