GET
/
transcribe
curl --request GET \
  --url https://api.cloudglue.dev/v1/transcribe \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "job_id": "<string>",
      "status": "pending",
      "url": "<string>",
      "created_at": 123,
      "transcribe_config": {
        "enable_summary ": true,
        "enable_speech": true,
        "enable_visual_scene_description": true,
        "enable_scene_text": true
      },
      "data": {
        "content": "<string>",
        "title": "<string>",
        "summary": "<string>",
        "speech": [
          {
            "text": "<string>",
            "start_time": 123,
            "end_time": 123
          }
        ],
        "visual_scene_description": [
          {
            "text": "<string>",
            "start_time": 123,
            "end_time": 123
          }
        ],
        "scene_text": [
          {
            "text": "<string>",
            "start_time": 123,
            "end_time": 123
          }
        ]
      },
      "error": "<string>"
    }
  ],
  "total": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:50

Maximum number of transcription jobs to return

Required range: x <= 100
offset
integer
default:0

Number of transcription jobs to skip

status
enum<string>

Filter transcription jobs by status

Available options:
pending,
processing,
completed,
failed,
not_applicable
created_before
string

Filter transcription jobs created before a specific date (YYYY-MM-DD format), in UTC timezone

created_after
string

Filter transcription jobs created after a specific date (YYYY-MM-DD format), in UTC timezone

url
string

Filter transcription jobs by the input URL used for transcription

response_format
enum<string>
default:json

Format for the response

Available options:
json,
markdown

Response

200
application/json

A list of transcription jobs

The response is of type object.