List batch jobs
curl --request GET \
--url https://api.batch.slng.ai/v1/batch/jobs \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.batch.slng.ai/v1/batch/jobs"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.batch.slng.ai/v1/batch/jobs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.batch.slng.ai/v1/batch/jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.batch.slng.ai/v1/batch/jobs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.batch.slng.ai/v1/batch/jobs")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.batch.slng.ai/v1/batch/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
}{
"error": "Invalid status value(s): BOGUS. Allowed: DECODING, DELETED, DONE, FAILED, IN_PROGRESS, QUEUED"
}{
"error": "API key id not found"
}{
"error": "Internal server error"
}Speechmatics
List batch jobs
Returns a paginated list of jobs for your organization. Supports filtering by status, model, and submission date range, plus sorting.
GET
/
v1
/
batch
/
jobs
List batch jobs
curl --request GET \
--url https://api.batch.slng.ai/v1/batch/jobs \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.batch.slng.ai/v1/batch/jobs"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.batch.slng.ai/v1/batch/jobs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.batch.slng.ai/v1/batch/jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.batch.slng.ai/v1/batch/jobs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.batch.slng.ai/v1/batch/jobs")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.batch.slng.ai/v1/batch/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
}{
"error": "Invalid status value(s): BOGUS. Allowed: DECODING, DELETED, DONE, FAILED, IN_PROGRESS, QUEUED"
}{
"error": "API key id not found"
}{
"error": "Internal server error"
}Authorizations
API key from the SLNG dashboard.
Query Parameters
Page number (1-based).
Required range:
x >= 1Number of items per page.
Required range:
1 <= x <= 100Comma-separated statuses to filter by. Allowed values: QUEUED, IN_PROGRESS, DECODING, DONE, FAILED, DELETED.
Filter by model code (exact match).
Filter jobs submitted after this ISO 8601 datetime.
Filter jobs submitted before this ISO 8601 datetime.
Field to sort results by.
Available options:
submitted_at, status, model_code Sort direction.
Available options:
asc, desc Was this page helpful?
⌘I