# TikTok User Followers API (https://www.socialcrawl.dev/platforms/tiktok/user-followers) > Returns a list of followers for a TikTok user. Each follower includes username, display name, avatar, and follower count. TL;DR: `GET /v1/tiktok/user/followers` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `handle` | no | TikTok username without the @ symbol | | `user_id` | no | User id. Use this for faster response times. | | `min_time` | no | Used to paginate. Get 'min_time' from previous response. | | `trim` | no | Set to true to get a trimmed response | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktok/user/followers" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list TikTok followers with an API? Send a GET request to /v1/tiktok/user/followers with handle or user_id. SocialCrawl returns a paginated list of followers with handle, display name, avatar URL, follower count, and verification status. ### Can I use a TikTok user id instead of a handle? Yes. Pass user_id instead of handle for faster responses. The endpoint requires exactly one of the two — whichever you pass, the other is optional. ### How do I paginate through all of a user's followers? Read the min_time field from the response and pass it as the min_time parameter on your next request. Repeat until min_time is 0 or empty to collect every public follower. ### Can TikTok Followers API return follower counts for each follower? Yes. Each follower includes their own follower_count so you can identify high-reach followers inside a creator's audience for influencer mapping and affiliate outreach. ### How much does the TikTok Followers API cost? Each request costs 1 credit on the standard tier regardless of how many followers are returned in the page. New accounts get 100 free credits with no credit card required. See the full TikTok API: https://www.socialcrawl.dev/platforms/tiktok ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to list TikTok followers with the SocialCrawl API - What does the SocialCrawl TikTok Followers endpoint return?