Introduction
Turn any YouTube video into viral short-form clips with the ScaleReach API.
What is ScaleReach?
ScaleReach is an AI-powered platform that takes long-form YouTube videos and automatically generates viral short-form clips — ready for TikTok, Reels, and Shorts.
The API lets you do everything programmatically:
- Submit a YouTube URL
- Wait for AI analysis (transcription, viral moment detection, clip generation)
- Retrieve your clips with download URLs
- Export clips in any format/resolution
Base URL
https://api.scalereach.aiHow it works
- Get your API key — Go to Workspace Settings → API Keys in the ScaleReach dashboard and create a key.
- Submit a YouTube video —
POST /api/videos/youtubewith the URL and your workspace ID. Processing starts automatically. - Poll for status —
GET /api/videos/:id/status— watch it go fromdownloading→transcribing→analyzing→completed. - Get your clips —
GET /api/videos/:id/clips— returns all detected viral clips with scores, transcripts, and signed download URLs.
Quick example
curl -X POST https://api.scalereach.ai/api/videos/youtube \
-H "Authorization: Bearer sr_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"youtubeUrl": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"config": {
"clipType": "viral-clips",
"aspectRatio": "9:16",
"enableCaptions": true
}
}'The response includes a video.id — use that to check status and retrieve clips.