Skip to main content
GET
/
jobs
/
{id}
Job - Get
curl --request GET \
  --url https://api-dex.chainstream.io/jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "state": "completed",
  "result": {
    "success": true,
    "data": {
      "message": "Job completed successfully"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Job identifier

Example:

"12345"

Response

200 - application/json

Job status retrieved successfully

state
string
required

Job state

Example:

"completed"

result
object
required

Job result

Example:
{
"success": true,
"data": { "message": "Job completed successfully" }
}