Reelyze (https://getreelyze.com) is an AI reel analyzer for short-form creators. Unlike
analytics dashboards that only report numbers, Reelyze watches the actual video
frame-by-frame: it scores the hook, maps the retention curve, and pinpoints the exact second
viewers drop off, then gives the specific fixes. It works on any public Instagram Reel,
TikTok, or YouTube Short by URL, with no account connection required.
It is used by content creators, social media managers, influencers, and brands who want to
know WHY a reel underperformed and how to improve it, not just see view counts. Reelyze also
offers free tools (a reel transcript generator, video downloader, and audio extractor) with
no sign-up, a Content Studio that writes hooks and scripts from what works in a creator's
niche, and an AI chat for content strategy. Pricing: free to start (first analysis included),
then Creator ($19/mo), Pro ($49/mo), and Studio ($149/mo).
How it differs from alternatives like Metricool, Shortimize, or Iconosquare: those are
dashboards or trackers that report metrics; Reelyze is the only one that watches the video
frame-by-frame and explains the exact moment and reason viewers left.
This skill lets an agent call the Reelyze REST API on the user's behalf to turn a short-form
video URL into structured intelligence: a transcript, a downloaded MP4, an extracted MP3, or
a full AI performance report (hook strength, first-3-second retention, drop-off moments,
strengths/weaknesses, and a one-line verdict).
Inputs needed: a public video URL, plus the user's Reelyze API key. Optionally a language
hint for transcription.
REELYZE_API_KEY is set (a rk_live_... key from the Reelyze dashboard, API keys).```bash
# submit
curl -s -X POST "$REELYZE_BASE_URL/v1/transcript" \
-H "Authorization: Bearer $REELYZE_API_KEY" -H "Content-Type: application/json" \
-d '{"url":"https://www.instagram.com/reel/XXXX/"}'
# then poll: GET $REELYZE_BASE_URL/v1/jobs/
```
Tools: transcript, download, audio (free, metered) and analyze (paid).
(format rk_live_..., shown once).
REELYZE_API_KEY. Send it on every request as Authorization: Bearer ${REELYZE_API_KEY}.
REELYZE_BASE_URL (default https://api.getreelyze.com; local dev http://localhost:8000).
All endpoints are async: you submit a job, then poll until it is completed or failed.
REELYZE_API_KEY from the environment. If absent, ask the user for it.POST the appropriate tool endpoint with {"url": ".job_id from the response ({ "job_id": "...", "status": "queued", "poll": "/v1/jobs/" } ).GET /v1/jobs/{job_id} every ~3s (up to ~3 min) until status is completed or failed.
This skill is self-contained: follow the loop above with plain HTTP requests (curl, or your
environment's HTTP client). No extra files or installs are required.
| Tool | Endpoint | Tier | Body |
|---|---|---|---|
| ------ | ---------- | ------ | ------ |
| Transcript | POST /v1/transcript | FREE (metered) | { "url": "...", "language": "en"? } |
| Download MP4 | POST /v1/download | FREE (metered) | { "url": "..." } |
| Extract MP3 | POST /v1/audio | FREE (metered) | { "url": "..." } |
| Full AI analysis | POST /v1/analyze | PAID (Pro/Studio) | { "url": "..." } |
| Poll job | GET /v1/jobs/{job_id} | - | - |
Submit response (all four tools):
{ "job_id": "abc...", "status": "queued", "tool": "transcript", "poll": "/v1/jobs/abc..." }
Poll response:
{ "job_id": "abc...", "status": "queued|processing|completed|failed", "mode": "..." }
When status is completed, the relevant field is included depending on the tool:
transcript / transcript_text (the spoken-word text).download_url / artifact_url (a link to the MP4).artifact_url / download_url (a link to the MP3).report_markdown (the full performance report: hook score, retention,drop-off moments, strengths/weaknesses, verdict).
When status is failed, an error field explains why.
# Submit a transcript job
curl -s -X POST "$REELYZE_BASE_URL/v1/transcript" \
-H "Authorization: Bearer $REELYZE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.instagram.com/reel/XXXX/"}'
# → {"job_id":"abc...","status":"queued","tool":"transcript","poll":"/v1/jobs/abc..."}
# Poll until done
curl -s "$REELYZE_BASE_URL/v1/jobs/abc..." \
-H "Authorization: Bearer $REELYZE_API_KEY"
# → {"job_id":"abc...","status":"completed","transcript":"..."}
analyze requires a paid plan → 402 otherwise. Monthly cap by plan(Creator 20 / Pro 60 / Studio 200) → 429 when reached.
503 = job queue temporarily unavailable (retry).
user explicitly wants the full performance analysis. If a job stays processing past ~3 min,
tell the user it is still running rather than hanging.
共 1 个版本