Endpoints
Batch Transcribe Videos
POST
/
transcribe-batch
Copy
curl --request POST \
--url https://api.scribesocial.ai/v1/transcribe-batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"post_urls": [
"<string>"
],
"callback_url": "<string>",
"proxy_url": "<string>",
"max_mb_download_on_proxy": 123
}'
Copy
{
"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.
Body
application/json
Response
200 - application/json
Success
The response is of type object
.
Copy
curl --request POST \
--url https://api.scribesocial.ai/v1/transcribe-batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"post_urls": [
"<string>"
],
"callback_url": "<string>",
"proxy_url": "<string>",
"max_mb_download_on_proxy": 123
}'
Copy
{
"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>"
}
Assistant
Responses are generated using AI and may contain mistakes.