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",
      "model_code": "slng/speechmatics/batch:15.0.0",
      "submitted_at": "2026-04-01T12:00:00Z"
    },
    {
      "job_id": "myjob456",
      "status": "IN_PROGRESS",
      "model_code": "slng/speechmatics/batch:15.0.0",
      "submitted_at": "2026-04-02T09:30:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "page_size": 20,
    "total": 142,
    "pages": 8
  }
}

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.

Query Parameters

page
integer
default:1

Page number (1-based).

Required range: x >= 1
page_size
integer
default:20

Number of items per page.

Required range: 1 <= x <= 100
status
string

Comma-separated statuses to filter by. Allowed values: QUEUED, IN_PROGRESS, DECODING, DONE, FAILED, DELETED.

model_code
string

Filter by model code (exact match).

submitted_after
string<date-time>

Filter jobs submitted after this ISO 8601 datetime.

submitted_before
string<date-time>

Filter jobs submitted before this ISO 8601 datetime.

sort_by
enum<string>
default:submitted_at

Field to sort results by.

Available options:
submitted_at,
status,
model_code
sort_order
enum<string>
default:desc

Sort direction.

Available options:
asc,
desc

Response

Paginated job list. Each item follows the BatchJob schema.

items
object[]
meta
object

Pagination envelope.