Quickstart
ReelsBuilder exposes its full video, intelligence, and distribution stack as a single REST API. Authenticate with a Bearer token, send JSON, get back JSON or a webhook. Every mutating endpoint accepts an Idempotency-Key header so retries are safe. Every async job delivers an HMAC-signed webhook on completion.
Base URL
https://api.reelsbuilder.ai/api/v1Your first request
curl -X POST https://api.reelsbuilder.ai/api/v1/hooks/generate \
-H "Authorization: Bearer rb_your_api_key_here" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{
"topic": "AI startup productivity",
"audience": "founders",
"count": 5
}'Response (within ~500ms):
{
"success": true,
"data": {
"hooks": [
{ "text": "The 3 AI tools my startup runs at 4am...", "score": 0.91 },
{ "text": "Why we deleted Notion last week.", "score": 0.87 },
...
]
},
"meta": { "request_id": "req_...", "credits_used": 1, "credits_remaining": 999 }
}Get an API key
Generate one from the developer dashboard. Free accounts include fixed starter videos; API generation uses paid tokens or the card-verified trial proof render.
Key concepts
- Authentication — Bearer tokens prefixed with
rb_. Hashed at rest with SHA-256. - Idempotency — Opt-in
Idempotency-Keyheader on POST. Replays within 24h return the original response without re-charging credits or re-running external work. - Webhooks — Async jobs deliver completion events with an HMAC-SHA256 signature derived from your key. Retry with exponential backoff on non-2xx.
- Rate limits — Per-key, per-minute. Headers tell you exactly where you stand.
- Errors — Stable error
codefield separate from HTTP status. Machine-handleable.
Products
Every endpoint below has a dedicated reference page with curl, TypeScript, and Python examples. The full machine-readable OpenAPI 3.0 spec lives at api.reelsbuilder.ai/api-docs.json.
Intelligence APIs
Pure data + reasoning endpoints. Low compute, agent-friendly, idempotency-safe.
Viral Trends API
Ranked trending topics with virality score, breaking-news urgency, and recency windows. Powered by Google Trends, NewsAPI, and ReelsBuilder's own engagement signal.
trending topics api, viral content api, real-time trends
Hook Generator API
Generate ranked short-form video hooks for any topic + audience. Returns 5 hooks with predicted engagement scores in under 500ms.
ai hook generator, video hook api
Brand DNA API
Pass a brand URL, get back a personalization profile: industry, tone, voice recommendation, topic pool, color palette, font system, and approved video styles.
brand analysis api, brand voice api
Production APIs
Compute-heavy video and audio endpoints. Async by default with webhook + polling delivery.
Generate & Post API
Single call: generate a branded short-form video, then post it to TikTok, Instagram, YouTube Shorts, Facebook Reels, and X. Async with HMAC-signed webhook delivery.
ai video generation api, multi-platform posting api
Video Generation API
Text-to-video, image-to-video, AI stories, Reddit narration, motivational, news broadcasts, magic-branded — 10+ generation modes, ElevenLabs voices, 63 karaoke styles.
text to video api, ai video api
YouTube Clipper API
Convert a long-form YouTube URL into face-tracked short-form clips. Vizard-powered, returns timecode-accurate cuts.
youtube to shorts api, video clipper api
Transcribe + Captions API
ElevenLabs Scribe v2 STT (99 languages, word-level timestamps) plus 63 karaoke caption styles rendered as burned-in subtitles or ASS files.
video transcription api, captions api
Specialty APIs
Niche endpoints with deep functionality and high willingness-to-pay.
Broadcast Graphics API
CNN/Bloomberg-style lower thirds, tickers, captions, and progress bars with live data feeds (stocks, crypto, news, weather).
lower third api, news graphics api
Multi-Platform Post API
Post any video to TikTok, Instagram, YouTube, Facebook, and X with OAuth-managed credentials and recurring scheduling.
post to tiktok api, social media posting api
Status & changelog
Production status is visible at api.reelsbuilder.ai/health. Breaking changes ship to /api/v2/* with overlap windows. The current stable surface is v1.
Support
API support: admin@reelsbuilder.ai. SLA-backed responses available on Business and Enterprise plans (see pricing).