ScaleReachScaleReach API
Clips

List Video Clips

GET /api/videos/:id/clips — Get all generated clips with download URLs.

GET /api/videos/{id}/clips

Get all generated clips for a video, with signed download URLs.

There is no separate "clip status" endpoint. Clips are generated as part of the video processing pipeline. Poll GET /api/videos/:id/status until the video reaches completed, then call this endpoint — all clips will be ready with downloadUrl included.

Path Parameters

ParameterTypeDescription
idstringThe video ID

Query Parameters

ParameterTypeDefaultDescription
minScorenumberMinimum virality score (0-100)
maxScorenumberMaximum virality score (0-100)
statusstringFilter: detected, generating, completed, failed
favoritedbooleanFilter favorited clips only
sortBystringscorescore or duration
sortOrderstringdescasc or desc

Example

curl "https://api.scalereach.ai/api/videos/VIDEO_ID/clips?minScore=80&sortBy=score" \
  -H "Authorization: Bearer sr_live_YOUR_KEY"
import requests

response = requests.get(
    f"https://api.scalereach.ai/api/videos/{video_id}/clips",
    params={"minScore": 80, "sortBy": "score"},
    headers={"Authorization": "Bearer sr_live_YOUR_KEY"},
)
data = response.json()
for clip in data["clips"]:
    print(f"[{clip['score']}] {clip['title']}{clip['downloadUrl']}")

Response 200

{
  "videoId": "UThwmCZb75JYZi4UP9rOX",
  "clips": [
    {
      "id": "clip_abc123",
      "title": "The moment Steve Jobs changed everything",
      "startTime": 245,
      "endTime": 302,
      "duration": 57,
      "score": 92,
      "viralityReason": "Strong emotional hook with unexpected twist",
      "transcript": "And that's when I realized that Apple wasn't just a company...",
      "downloadUrl": "https://cdn.scalereach.ai/clips/clip_abc123.mp4?signature=...",
      "thumbnailUrl": "https://cdn.scalereach.ai/thumbs/clip_abc123.jpg?signature=...",
      "status": "completed",
      "aspectRatio": "9:16",
      "favorited": false,
      "hooks": {
        "question": "What saved Apple from bankruptcy?",
        "statement": "This one decision saved Apple forever"
      }
    }
  ],
  "count": 8,
  "filters": {
    "minScore": 80,
    "sortBy": "score",
    "sortOrder": "desc"
  }
}

Clip Object Fields

FieldTypeDescription
idstringUnique clip ID
titlestringAI-generated clip title
startTimenumberStart time in seconds
endTimenumberEnd time in seconds
durationnumberClip duration in seconds
scorenumberVirality score (0-100)
viralityReasonstringAI explanation of why this moment is viral
transcriptstringTranscript text for this segment
downloadUrlstringSigned URL (expires in 1 hour)
thumbnailUrlstringSigned thumbnail URL
statusstringdetected, generating, completed, failed
aspectRatiostring9:16, 16:9, or 1:1
hooksobjectAI-generated hook suggestions
emotionsobjectDetected emotions
favoritedbooleanWhether the clip is favorited

On this page