Skip to main content
GET
/
v1
/
batch
/
jobs
/
{jobId}
/
files
Get batch job files
curl --request GET \
  --url https://api.batch.slng.ai/v1/batch/jobs/{jobId}/files \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "myjob123",
  "inputs": [
    {
      "key": "inputs/myjob123.wav",
      "s3_uri": "s3://slng-production-batch-input/inputs/myjob123.wav",
      "download_url": "https://slng-production-batch-input.s3.amazonaws.com/inputs/myjob123.wav?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=3600&..."
    }
  ],
  "outputs": [
    {
      "format": "json",
      "key": "outputs/myjob123.json",
      "s3_uri": "s3://slng-production-batch-output/outputs/myjob123.json",
      "download_url": "https://slng-production-batch-output.s3.amazonaws.com/outputs/myjob123.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=3600&..."
    },
    {
      "format": "txt",
      "key": "outputs/myjob123.txt",
      "s3_uri": "s3://slng-production-batch-output/outputs/myjob123.txt",
      "download_url": "https://slng-production-batch-output.s3.amazonaws.com/outputs/myjob123.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=3600&..."
    },
    {
      "format": "srt",
      "key": "outputs/myjob123.srt",
      "s3_uri": "s3://slng-production-batch-output/outputs/myjob123.srt",
      "download_url": "https://slng-production-batch-output.s3.amazonaws.com/outputs/myjob123.srt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=3600&..."
    }
  ]
}

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

Input and output files with signed download URLs.

job_id
string

The job identifier.

inputs
object[]

Uploaded audio files.

outputs
object[]

One entry per available output format. Missing formats are omitted.