Skip to main content
GET
/
v1
/
batch
/
jobs
List batch jobs
curl --request GET \
  --url https://api.batch.slng.ai/v1/batch/jobs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "job_id": "myjob123",
      "status": "DONE"
    },
    {
      "job_id": "myjob456",
      "status": "IN_PROGRESS"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key from the SLNG dashboard.

Response

200 - application/json

List of jobs.

items
object[]