Cost: free
GET
/
jobs
/
{jobId}
Get job status and results
curl --request GET \
  --url https://api.workfloo.ws/v0/jobs/{jobId} \
  --header 'x-api-key: <api-key>'
{
"response": {
"success": true,
"job": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "pending",
"input": {
"url": "https://workfloows.com",
"language": "en"
}
}
}
}
Retrieves the current status and results of a specific job by its job ID. This endpoint is essential for monitoring asynchronous job progress and retrieving results when jobs complete. This endpoint does not affect credits, but rate limits apply.
For optimal performance, avoid excessive polling.
Job results are available for 24 hours after the job is completed.

Job lifecycle

Jobs progress through the following states:
  1. pending: job is created and queued for processing
  2. processing: job is actively being executed
  3. completed: job finished successfully with results available
  4. failed: job encountered an error during execution

Authorizations

x-api-key
string
header
required

Path Parameters

jobId
string
required

The job identifier

Response

Successful response

response
object
results
object[]

Job results (only present for completed jobs)