Skip to main content
GET
/
v1
/
jobs
/
{jobId}
Get Job Status
curl --request GET \
  --url https://api.preceptai.co.uk/v1/jobs/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "enrichment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "<string>",
  "progress": {
    "completed": 123,
    "total": 123,
    "skipped": 123
  },
  "results": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

jobId
string<uuid>
required

The unique identifier of the job.

Response

The current status, progress or completed results of the job.

enrichment_id
string<uuid>

The unique identifier for the job.

status
string

Current status of the job (e.g., pending, completed).

progress
object

Progress metrics if the job is not yet completed.

results
object[]

The array of enriched leads or company insights if the job is completed. Will be null if not yet completed.