Skip to main content
GET
/
results
/
file
/
{file_id}
Get file results
curl --request GET \
  --url https://api.soket.ai/transcribe/results/file/{file_id} \
  --header 'Authorization: Bearer <token>'
{
  "file_id": "<string>",
  "filename": "<string>",
  "status": "<string>",
  "result": {},
  "errors": [
    {}
  ],
  "chunk_results": [
    {}
  ]
}

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.

Returns merged transcript and status for one file.

Query params

  • chunks (optional bool): include per-chunk details
  • speech_information (optional bool): include segment-level speech information (tone, accent, speaker_id, timestamps, etc.)

Example

curl -X GET "https://api.soket.ai/transcribe/results/file/$FILE_ID?chunks=true" \
  -H "Authorization: Bearer $JWT_TOKEN"

Typical response shape

  • Found file: { file_id, filename, status, result?, errors?, chunk_results? }
  • Not found: { "error": "file not found" }
In development mode, additional counters may be included: total_chunks, completed_chunks, and failed_chunks.

Authorizations

Authorization
string
header
required

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

Path Parameters

file_id
string
required

Query Parameters

chunks
boolean
speech_information
boolean

Include segment-level speech information (tone, accent, speaker_id, timestamps, etc.)

Response

File results response

file_id
string
filename
string
status
string
result
object
errors
object[]
chunk_results
object[]