GET request to pull their bio, follower count, and up to 24 recent posts. From there, chain directly into transcripts and structured extraction on your top performers — the response gives you every video URL you need.
Fetch the creator's profile
Call The response includes follower count, verified status, and a
/v1/instagram/profile with the creator’s username and set limit=24 to retrieve their full recent posting history alongside bio and audience stats.videos array of up to 24 recent posts — each with per-post view and like counts:Calculate engagement rate and identify top performers
For each post in the A post with 612,000 likes on a 283M-follower account has an engagement rate of roughly 0.22% — already above typical brand benchmarks. Pick the posts with the highest engagement rates to analyze further.
videos array, divide likes by the profile-level followers count to get engagement rate. Sort descending and select your top 3 performers.Transcribe each top video
For each top-performing video post, send its This enqueues a job and returns a Poll until
url directly to /v1/transcript. The URL comes straight from the profile response — no manual lookup needed.jobId:status is "completed":Extract hook, CTA, and content structure
Send each top video to Poll the returned
/v1/extract with a prompt targeting the content patterns you care about. This watches the full video and returns structured answers.jobId to get results:Synthesize the creator audit report
Combine the data from steps 1–4 into a structured creator audit:
- Profile summary — follower count, verified status, posting cadence, total posts
- Engagement analysis — average and top engagement rates across the 24 posts
- Top content — titles, view counts, and like counts for your top performers
- Content patterns — recurring hooks, CTAs, and structural formats from the extraction results
- Transcript highlights — key claims or language patterns from the spoken content
Instagram profiles return real follower and following counts from Instagram’s web profile API. TikTok profiles return total video count and per-video engagement stats (views, likes, comments, shares) — but follower counts are not available from TikTok’s public profile data.
Data available by platform
Use this table to understand which fields are available when auditing TikTok versus Instagram creators:| Data point | TikTok | |
|---|---|---|
| Display name | ✓ | ✓ |
| Avatar URL | — | ✓ |
| Verified badge | ✓ | ✓ |
| Bio / description | — | ✓ |
| Follower count | — | ✓ |
| Following count | — | ✓ |
| Total post count | ✓ | ✓ |
| Per-post views | ✓ | ✓ (videos only) |
| Per-post likes | ✓ | ✓ |
| Per-post comments | ✓ | ✓ |
| Per-post shares | ✓ | — |
| Captions / descriptions | ✓ | ✓ |
| Hashtags / tags | ✓ | — |
| Thumbnails | ✓ | ✓ |
| Direct video URL | — | ✓ (videos only) |
| Publish timestamp | ✓ | ✓ |
| Media type (video / image / carousel) | — | ✓ |
| Chain into /v1/transcript or /v1/extract | ✓ | ✓ |