Skip to main content
GET
/
jobs
/
{id}
Get job status
curl --request GET \
  --url https://app.strandai.com/api/v1/jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "<string>",
  "markers": [
    "<string>"
  ],
  "progress": 123,
  "reservedCredits": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "startedAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z",
  "errorMessage": "<string>",
  "resultsAvailable": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.strandai.com/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Response

Job

id
string<uuid>
required
status
string
required
markers
string[]
required
progress
number | null
reservedCredits
integer | null
createdAt
string<date-time> | null
startedAt
string<date-time> | null
completedAt
string<date-time> | null
errorMessage
string | null
resultsAvailable
boolean