Pular para o conteúdo principal
GET
/
clips
/
{videoId}
/
submissions
List submissions
curl --request GET \
  --url https://api.cut.pro/api/v1/clips/{videoId}/submissions \
  --header 'X-Api-Key: <api-key>'
{
  "submissions": [
    {
      "submission_id": "<string>",
      "estimated_time": 123,
      "queue_position": 123,
      "is_priority": true,
      "strategy_id": "<string>",
      "timeframe": {
        "start": 123,
        "end": 123
      },
      "credit_cost": 123,
      "is_reclip": true,
      "clips_count": 123,
      "created_at": "<string>",
      "completed_at": "<string>"
    }
  ],
  "pagination": {
    "current_page": 123,
    "total_pages": 123,
    "total_count": 123,
    "has_next_page": true,
    "has_previous_page": true,
    "limit": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://cut.pro/docs/llms.txt

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

Autorizações

X-Api-Key
string
header
obrigatório

Parâmetros de caminho

videoId
string
obrigatório

Parâmetros de consulta

page
number

Page number (default: 1)

Intervalo obrigatório: x >= 1
limit
number

Items per page (default: 20, max: 100)

Intervalo obrigatório: 1 <= x <= 100

Resposta

Response for status 200

submissions
object[]
obrigatório
pagination
object
obrigatório
Last modified on June 2, 2026