Pular para o conteúdo principal
POST
/
clips
/
info
Analyze a video
curl --request POST \
  --url https://api.cut.pro/api/v1/clips/info \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "url": "<string>"
}
'
{
  "video_id": "<string>",
  "title": "<string>",
  "description": "<string>",
  "author": "<string>",
  "platform": "<string>",
  "duration": 123,
  "thumbnail_url": "<string>",
  "credits_cost": 123,
  "credits_original": 123,
  "discount_percent": 123,
  "force_watermark": true,
  "current_balance": 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

Corpo

url
string
obrigatório

Public video URL (YouTube, Twitch, Kick, TikTok, etc.)

Resposta

Response for status 200

video_id
string
obrigatório

Unique video ID — pass this to POST /clips as video_id

title
string
obrigatório

Video title

description
string
obrigatório

Video description

author
string
obrigatório

Channel or creator name

platform
string
obrigatório

Source platform — e.g. youtube, twitch, kick, tiktok

duration
number
obrigatório

Video duration in seconds

thumbnail_url
string
obrigatório

URL of the video thumbnail

credits_cost
number
obrigatório

Credits that will be deducted if you submit this video (after any discount)

credits_original
number
obrigatório

Base credit cost before loyalty or plan discounts

discount_percent
number
obrigatório

Discount applied as a percentage (0–100). Non-zero for returning users or plan benefits

force_watermark
boolean
obrigatório

true if generated clips will carry a CutPro watermark — upgrade your plan to remove it

current_balance
number
obrigatório

Your credit balance at the time of this request

Last modified on June 2, 2026