GET
/
api
/
v1
/
jobs
/
:id

This endpoint is not billed and can be called unlimited times without any cost implications

x-api-key
string
required

This parameter specifies the private key you’ll need for HuntAPI.com access.

Response

id
string

Unique identifier for the job (UUID format)

status
string

Current status of the job:

  • QueuedJob: Job is in progress
  • CompletedJob: Job has finished processing
success
boolean

Indicates if the job completed successfully. Only present when status is CompletedJob

endpoint
string

The API endpoint that initiated this job (e.g., “/api/video/download”)

created_at
string

ISO 8601 timestamp when the job was created

started_at
string

ISO 8601 timestamp when the job started processing

duration_ms
number

Time taken to complete the job in milliseconds. Only present when status is CompletedJob

args
object

Input parameters provided when creating the job (e.g., query URL, async flag)

result
object

Output data from the completed job. Only present when status is CompletedJob