Skip to main content
GET
/
v1
/
batch
/
jobs
/
{jobId}
Get batch job
curl --request GET \
  --url https://api.batch.slng.ai/v1/batch/jobs/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "myjob123",
  "status": "DONE"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

API key from the SLNG dashboard.

Path Parameters

jobId
string
required

The alphanumeric job identifier.

Pattern: ^[a-zA-Z0-9]+$

Response

200 - application/json

Job details.

job_id
string

The job identifier.

status
enum<string>

Current job status.

Available options:
QUEUED,
IN_PROGRESS,
DECODING,
DONE,
FAILED,
DELETED