Endpoints
Get Batch Transcribe Result
Endpoints
Get Batch Transcribe Result
GET
/
transcribe-result
/
{operationId}
curl --request GET \
--url https://api.scribesocial.ai/v1/transcribe-result/{operationId} \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"video_url": "<string>",
"description": "<string>",
"transcription": "<string>",
"paragraphs": [
{
"sentences": [
{
"text": "<string>",
"start": 123,
"end": 123
}
],
"num_words": 123,
"start": 123,
"end": 123
}
],
"video_id": "<string>",
"transcribed_duration": 123,
"total_duration": 123,
"status": "in_progress",
"error": null,
"platform": "<string>",
"title": "<string>"
}
],
"status": "queued",
"operation_id": "<string>",
"markdown": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Success
Available options:
in_progress
, failed
, completed
Available options:
NSFWUnsupported
, InvalidRequestBody
, UnsupportedUrl
, NoVideoDetected
, TooManyVideos
, DownloadSizeExceeded
, ProxyConnectionFailure
, ProxyDownloadFailed
Available options:
queued
, in_progress
, failed
, completed
, completed_with_failures
curl --request GET \
--url https://api.scribesocial.ai/v1/transcribe-result/{operationId} \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"video_url": "<string>",
"description": "<string>",
"transcription": "<string>",
"paragraphs": [
{
"sentences": [
{
"text": "<string>",
"start": 123,
"end": 123
}
],
"num_words": 123,
"start": 123,
"end": 123
}
],
"video_id": "<string>",
"transcribed_duration": 123,
"total_duration": 123,
"status": "in_progress",
"error": null,
"platform": "<string>",
"title": "<string>"
}
],
"status": "queued",
"operation_id": "<string>",
"markdown": "<string>"
}