YepAPI
TikTok API

User Followers

Get a list of followers for a TikTok user.

POST/v1/tiktok/user-followers
$0.01/call

Usage

const res = await fetch('https://api.yepapi.com/v1/tiktok/user-followers', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ user_id: '6842123456789012345' }),
});
const { data } = await res.json();
console.log(data);
curl -X POST https://api.yepapi.com/v1/tiktok/user-followers \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_id": "6842123456789012345"}'

Request Body

ParameterTypeRequiredDescriptionDefault
user_idstringYesTikTok user ID (numeric)
cursorstringNoPagination cursor from previous response
countnumberNoNumber of results to return20

Response

{
  "ok": true,
  "data": {
    "has_more": true,
    "cursor": "50",
    "followers": [
      {
        "user_id": "6891234567890123456",
        "unique_id": "foodlover99",
        "nickname": "Food Lover",
        "avatar": "https://p16-sign.tiktokcdn.com/...",
        "signature": "I love cooking!",
        "follower_count": 1200,
        "is_verified": false
      }
    ]
  }
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.has_morebooleanWhether more results are available
data.cursorstringCursor for fetching the next page
data.followersobject[]Array of follower user objects
data.followers[].user_idstringFollower's unique numeric identifier
data.followers[].unique_idstringFollower's unique handle
data.followers[].nicknamestringFollower's display name
data.followers[].avatarstringProfile picture URL
data.followers[].signaturestringBio text
data.followers[].follower_countnumberNumber of followers this user has
data.followers[].is_verifiedbooleanWhether the user is verified

Use the cursor value from the response to paginate through results.

On this page