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

# Get Job Status

> 

Retrieve the current status and results of an enrichment or search job.

Use this endpoint to poll the status of jobs initiated via endpoints that return an `enrichment_id`. The response payload will contain the enrichment progress or results when completed.



## OpenAPI

````yaml /api-reference/combined.json get /v1/jobs/{jobId}
openapi: 3.1.0
info:
  title: Precept API
  description: >-
    Precept API provides powerful, programmatic access to our AI-driven B2B
    account research, company enrichment, and verified contact data
    capabilities. Use these endpoints to discover high-intent companies, map
    decision-makers, and run personalized enrichment pipelines directly
    integrating with your CRM, spreadsheets, or automated workflows like Make
    and n8n.
  version: 1.0.0
servers:
  - url: https://api.preceptai.co.uk
security:
  - bearerAuth: []
paths:
  /v1/jobs/{jobId}:
    get:
      tags:
        - Jobs
      summary: Get Job Status
      description: >-


        Retrieve the current status and results of an enrichment or search job.


        Use this endpoint to poll the status of jobs initiated via endpoints
        that return an `enrichment_id`. The response payload will contain the
        enrichment progress or results when completed.
      parameters:
        - name: jobId
          in: path
          required: true
          description: The unique identifier of the job.
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The current status, progress or completed results of the job.
          content:
            application/json:
              schema:
                type: object
                properties:
                  enrichment_id:
                    type: string
                    format: uuid
                    description: The unique identifier for the job.
                  status:
                    type: string
                    description: Current status of the job (e.g., pending, completed).
                  progress:
                    type: object
                    description: Progress metrics if the job is not yet completed.
                    properties:
                      completed:
                        type: integer
                      total:
                        type: integer
                      skipped:
                        type: integer
                  results:
                    type: array
                    description: >-
                      The array of enriched leads or company insights if the job
                      is completed. Will be null if not yet completed.
                    items:
                      type: object
        '400':
          description: Job ID is missing or invalid.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '403':
          description: 'Forbidden: Access denied for the requested job.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '404':
          description: Job not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````