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": [
    {
      "name": "recording.mp3",
      "content_type": "audio/mpeg",
      "size": 2048000,
      "url": "https://storage.slng.ai/batch/myjob123/input/recording.mp3?token=..."
    }
  ],
  "outputs": [
    {
      "name": "transcript.json",
      "content_type": "application/json",
      "size": 15200,
      "url": "https://storage.slng.ai/batch/myjob123/output/transcript.json?token=..."
    },
    {
      "name": "transcript.srt",
      "content_type": "text/srt",
      "size": 8400,
      "url": "https://storage.slng.ai/batch/myjob123/output/transcript.srt?token=..."
    }
  ]
}

Authorizations

Authorization
string
header
required

API key from the SLNG dashboard.

Path Parameters

jobId
string
required

The alphanumeric job identifier.

Response

200 - application/json

Input and output files with signed download URLs.

job_id
string

The job identifier.

inputs
object[]

Uploaded audio files.

outputs
object[]

Generated transcript files.