Skip to main content
POST
/
v1
/
jobStatus
Check job status
curl --request POST \
  --url https://api.starfishdata.ai/v1/jobStatus \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "jobId": "<string>",
  "projectId": "<string>"
}
'
{
  "jobId": "<string>",
  "status": "RUNNING",
  "type": "<string>",
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.starfishdata.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Body

application/json
jobId
string
required

ID of the job to check status for

projectId
string
required

ID of the project

Response

Successfully retrieved job status

jobId
string

ID of the job

status
enum<string>

Current status of the job

Available options:
RUNNING,
COMPLETE,
FAILED
type
string

Type of the job

success
boolean

Whether the request was successful