Skip to main content
GET
/
api
/
v1
/
users
/
{username}
/
following
Get accounts followed by a user
curl --request GET \
  --url https://full-tiktok-api.p.rapidapi.com/api/v1/users/{username}/following \
  --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": [
    {
      "user_id": "107955",
      "username": "charlidamelio",
      "display_name": "charli d'amelio",
      "website_url": "https://charlidamelio.com",
      "followers": 155000000,
      "following": 1200,
      "total_likes": 11000000000,
      "total_videos": 2400,
      "verified": true,
      "is_private": false,
      "bio": "just a girl who loves to dance",
      "avatar_url": "https://p16-sign.tiktokcdn-us.com/...",
      "avatar_thumb_url": "https://p16-sign.tiktokcdn-us.com/..."
    }
  ],
  "pagination": {
    "next_max_time": 1780426275,
    "has_more": true,
    "total": 158151684
  },
  "error": {
    "code": "NOT_FOUND",
    "message": "The requested resource was not found.",
    "details": null
  }
}
Returns a page of accounts the user is following. Pagination uses max_time — pass the next_max_time from the previous response as ?max_time= to get the next page.

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

Query Parameters

count
integer
default:20

Number of accounts to return (1–100)

Required range: 1 <= x <= 100
max_time
integer<int64>

Unix timestamp cursor for pagination; use the next_max_time from the previous response

Response

Success

meta
object

Response metadata present in every API response

data
object[]
pagination
object

Max-time pagination info (used by followers and following endpoints)

error
object

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