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

# Get inference job status

> Retrieve an inference job's status and progress counts.



## OpenAPI

````yaml get /v1/inference/jobs/{job_id}
openapi: 3.1.0
info:
  title: SeekrFlow API
  description: SeekrFlow API Documentation
  termsOfService: http://www.seekr.com/support
  contact:
    name: Seekr API Support
    url: http://www.seekr.com/contact
    email: contact@seekr.com
  version: 5.48.1
servers:
  - url: https://flow.seekr.com
    description: SeekrBuild server base URL
security: []
paths:
  /v1/inference/jobs/{job_id}:
    get:
      tags:
        - Inference Jobs
      summary: Read Inference Job Status
      operationId: read_inference_job_status_v1_inference_jobs__job_id__get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InferenceJobStatusResponse'
        '422':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    InferenceJobStatusResponse:
      properties:
        id:
          type: string
          title: Id
        priority:
          type: integer
          title: Priority
        status:
          $ref: '#/components/schemas/InferenceJobStatus'
        total:
          type: integer
          title: Total
        completed:
          type: integer
          title: Completed
          description: >-
            The number of requests that finished, including requests that
            failed.
        failed:
          type: integer
          title: Failed
        cancelled:
          type: integer
          title: Cancelled
        unacknowledged:
          type: integer
          title: Unacknowledged
          description: >-
            The number of results that are available and not yet acknowledged.
            Reading results doesn't change this count.
      type: object
      required:
        - id
        - priority
        - status
        - total
        - completed
        - failed
        - cancelled
        - unacknowledged
      title: InferenceJobStatusResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    InferenceJobStatus:
      type: string
      enum:
        - draft
        - queued
        - running
        - completed
        - cancelled
      title: InferenceJobStatus
      description: >-
        The job's status. A job is `draft` until you submit it, then `queued`,
        then `running`, and ends as `completed` or `cancelled`.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      description: >-
        Your Seekr API key, sent in the Authorization header with no 'Bearer'
        prefix.
      in: header
      name: Authorization

````