Skip to main content
GET
/
download
/
batch
/
{batch_id}
Download batch results
curl --request GET \
  --url https://api.soket.ai/transcribe/download/batch/{batch_id} \
  --header 'Authorization: Bearer <token>'
"<string>"

Documentation Index

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

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

Downloads all results for a batch as a stream.

Query params

  • status (optional)
  • format (default: ndjson): ndjson or json
  • raw (default: false): return raw per-job records instead of merged per-file results
  • chunks (optional bool): include chunk payloads in merged output
  • speech_information (optional bool): include segment-level speech information in merged output

Example (NDJSON export)

curl -L -o "batch_results.ndjson" \
  "https://api.soket.ai/transcribe/download/batch/$BATCH_ID?format=ndjson" \
  -H "Authorization: Bearer $JWT_TOKEN"

Example (JSON export with filter)

curl -L -o "batch_completed.json" \
  "https://api.soket.ai/transcribe/download/batch/$BATCH_ID?status=completed&format=json" \
  -H "Authorization: Bearer $JWT_TOKEN"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

batch_id
string
required

Query Parameters

status
enum<string>
Available options:
completed,
failed,
processing
format
enum<string>
default:ndjson
Available options:
ndjson,
json
raw
boolean
default:false
chunks
boolean
speech_information
boolean

Include segment-level speech information in merged output

Response

Download response

The response is of type string.