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

# Get Job Status

> Get the status of an evaluation job (for polling fallback when WebSocket unavailable).

Returns current progress, status, and result (if completed).



## OpenAPI

````yaml openapi.json get /v2/evaluate/jobs/{job_id}/status
openapi: 3.1.0
info:
  title: Valiqor API
  description: >-
    The Valiqor API provides programmatic access to AI application testing,
    evaluation, failure analysis, and security auditing.


    ## Authentication


    All API requests require an API key passed as a Bearer token in the
    `Authorization` header:


    ```

    Authorization: Bearer vq-xxxxxxxxxxxxxxxxxxxx

    ```


    Get your API key from the [Valiqor Dashboard](https://app.valiqor.com) or
    via `valiqor login` CLI command.


    ## Base URL


    ```

    https://api.valiqor.com

    ```
  version: 2.0.0
  contact:
    name: Valiqor Support
    url: https://valiqor.com
    email: support@valiqor.com
servers:
  - url: https://api.valiqor.com
    description: Production
security: []
tags:
  - name: Authentication
    description: >-
      API key validation, user management, device authorization flow, and CLI
      authentication. All SDK requests require a valid API key passed as a
      Bearer token.
  - name: Evaluation
    description: >-
      Run quality evaluations on datasets or traces. Compute metrics like
      faithfulness, relevance, coherence, and more. Compare runs and track
      trends over time.
  - name: Security
    description: >-
      Security audits (S1-S23 safety categories) and red team simulations.
      Detect prompt injection, harmful content, data leakage, and other
      vulnerabilities.
  - name: Failure Analysis
    description: >-
      Analyze AI app failures with root cause detection, severity scoring, and
      actionable fix suggestions. Supports both trace-based (full) and
      dataset-based (minimal) analysis modes.
  - name: Tracing
    description: >-
      Upload and query execution traces from AI applications. Traces capture
      messages, spans, tool calls, retrievals, and LLM interactions for
      debugging and evaluation.
  - name: Scanner
    description: >-
      Upload code scans to detect AI app features, workflows, and prompts.
      Generates evaluation configurations automatically from your codebase.
  - name: Projects
    description: >-
      Create and manage projects. Projects are containers that organize
      evaluation runs, security audits, traces, and failure analysis results.
paths:
  /v2/evaluate/jobs/{job_id}/status:
    get:
      tags:
        - Evaluation
      summary: Get Job Status
      description: >-
        Get the status of an evaluation job (for polling fallback when WebSocket
        unavailable).


        Returns current progress, status, and result (if completed).
      operationId: get_job_status_v2_evaluate_jobs__job_id__status
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyAuth: []
components:
  schemas:
    JobStatusResponse:
      properties:
        job_id:
          type: string
          title: Job Id
        job_type:
          type: string
          title: Job Type
          default: evaluation
        status:
          type: string
          title: Status
        progress_percent:
          type: number
          title: Progress Percent
          default: 0
        current_item:
          type: integer
          title: Current Item
          default: 0
        total_items:
          type: integer
          title: Total Items
          default: 0
        started_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Started At
        finished_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Finished At
        estimated_remaining_seconds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Estimated Remaining Seconds
        result:
          anyOf:
            - $ref: '#/components/schemas/EvaluateResponse'
            - type: 'null'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
      type: object
      required:
        - job_id
        - status
      title: JobStatusResponse
      description: Response for job status queries
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EvaluateResponse:
      properties:
        run_id:
          type: string
          title: Run Id
        project_id:
          type: string
          title: Project Id
        status:
          type: string
          title: Status
        total_items:
          type: integer
          title: Total Items
        evaluated_items:
          type: integer
          title: Evaluated Items
        overall_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Overall Score
        aggregate_scores:
          additionalProperties:
            type: number
          type: object
          title: Aggregate Scores
        metadata:
          additionalProperties: true
          type: object
          title: Metadata
      type: object
      required:
        - run_id
        - project_id
        - status
        - total_items
        - evaluated_items
        - overall_score
        - aggregate_scores
        - metadata
      title: EvaluateResponse
      description: Response model for evaluation endpoint
    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:
    APIKeyAuth:
      type: http
      scheme: bearer
      description: >-
        Valiqor API key. Pass as Bearer token: `Authorization: Bearer
        vq-xxxxxxxxxxxxxxxxxxxx`

````