Skip to main content
GET
/
api
/
v1
/
intelligence
/
creator
/
{username}
Get creator intelligence scorecard
curl --request GET \
  --url https://full-tiktok-api.p.rapidapi.com/api/v1/intelligence/creator/{username} \
  --header 'x-rapidapi-key: <api-key>'
{
  "meta": {
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "timestamp": "2025-03-12T14:32:01.498Z",
    "cached": false,
    "version": "2025-01"
  },
  "data": {
    "profile": {
      "username": "charlidamelio",
      "display_name": "charli d'amelio",
      "verified": true,
      "avatar_url": "https://p16-sign.tiktokcdn-us.com/...",
      "bio": "just a girl who loves to dance"
    },
    "audience": {
      "followers": 158200000,
      "following": 1400,
      "total_likes": 11000000000,
      "total_videos": 3141
    },
    "scores": {
      "engagement_rate": 9.5,
      "engagement_percentile": 98,
      "posting_consistency": 59,
      "niche_concentration": 100,
      "follower_growth_score": 42,
      "creator_authority_score": 77,
      "partnership_tier": "tier_2"
    },
    "intelligence": {
      "primary_niche": "fitness",
      "posts_analyzed": 15,
      "analysis_timestamp": "2025-03-12T14:32:01.498Z",
      "low_sample_warning": false
    }
  },
  "pagination": null,
  "error": {
    "code": "NOT_FOUND",
    "message": "The requested resource was not found.",
    "details": null
  }
}
Computes a comprehensive intelligence scorecard for a public TikTok creator based on their profile and recent posting history. Scores are computed from up to 30 recent posts and include:
  • engagement_rate — mean (likes + comments + shares) / plays across posts
  • engagement_percentile — engagement rate relative to TikTok creator benchmarks
  • posting_consistency — regularity of publishing intervals (0 = erratic, 100 = perfectly consistent)
  • niche_concentration — how tightly focused the creator’s content is on one topic
  • follower_growth_score — estimated growth velocity based on follower-to-likes ratio
  • creator_authority_score — composite of the above scores
  • partnership_tier — tier_1 (≥80), tier_2 (60–79), tier_3 (40–59), tier_4 (<40)
Results are cached for 30 minutes.

Authorizations

x-rapidapi-key
string
header
required

Your RapidAPI subscription key. Injected automatically by the RapidAPI gateway in production.

Path Parameters

username
string
required

TikTok username (with or without @). Account must be public.

Response

Success

meta
object

Response metadata present in every API response

data
object

Computed intelligence scorecard for a TikTok creator

pagination
object

Always null; this endpoint returns a single object and does not paginate.

Example:

null

error
object

Error details. Present only when the request failed; null on success.