TikTok API

TikTok Profile videos API

Paginated feed of a creator’s videos with stats, captions and media URLs. Paginate with the cursor field.

POST/v1/run/tiktok.profile_videos
Uptime
99.97%
30d · 3,591 calls
Requests
3,591
30d · weekly, last 12 wks
Response
2.6s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "found": true,
  "data": {
    "handle": "cristiano",
    "cursor": "1718200000000",
    "hasMore": true,
    "videos": [
      {
        "id": "7375000000000000000",
        "url": "https://www.tiktok.com/@cristiano/video/7375000000000000000",
        "caption": "Matchday 🔥",
        "views": 9400000,
        "likes": 1200000,
        "comments": 18400,
        "shares": 64000,
        "createdAt": "2024-06-10T18:20:00Z"
      }
    ]
  }
}
Response interface
interface TiktokProfileVideosResponse {
  data: {
    nextCursor: string | null;
    videos: {
      authorHandle?: string;
      authorImage?: string;
      authorName?: string;
      authorUserId?: string;
      caption: string;
      comments: number;
      createdUtc: number;
      durationSeconds?: number;
      id: string;
      image?: string;
      likes: number;
      saves?: number;
      shares?: number;
      url: string;
      videoUrl?: string;
      views: number;
    }[];
  } | null;
  found: boolean;
  reason?: "not_found";
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-20 · uptime and latency measured over 30d
POST /v1/run/tiktok.profile_videos
curl -X POST https://api.getanyapi.com/v1/run/tiktok.profile_videos \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"cristiano","cursor":"0"}'
FieldTypeExample value
Request body
handlestring"cristiano"TikTok username without the leading @.
cursorstring"0"Pagination cursor from a previous response's nextCursor.
Response
foundbooleantrue
dataobject
data.handlestring"cristiano"
data.cursorstring"1718200000000"
data.hasMorebooleantrue
data.videosarray
data.videos[].idstring"7375000000000000000"
data.videos[].urlstring"https://www.tiktok.com/@cristiano/video/7375000000000000000"
data.videos[].captionstring"Matchday 🔥"
data.videos[].viewsnumber9400000
data.videos[].likesnumber1200000
data.videos[].commentsnumber18400
data.videos[].sharesnumber64000
data.videos[].createdAtstring"2024-06-10T18:20:00Z"
Price
Price per requestUSD$0.0007
Price /1k reqUSD$0.70

FAQ

About the TikTok Profile videos API

The AnyAPI TikTok Profile videos API returns TikTok profile videos data as normalized JSON from one POST call to /v1/run/tiktok.profile_videos. Paginated feed of a creator’s videos with stats, captions and media URLs. Paginate with the cursor field. AnyAPI routes each request across 5 sources and falls back automatically when one fails. It costs from $0.70 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of TikTok profile videos calls through AnyAPI succeeded, with a median response time of 2.6 seconds across 3,591 measured calls.

It costs from $0.70 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Paginated feed of a creator’s videos with stats, captions and media URLs. Paginate with the cursor field. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of TikTok profile videos calls through AnyAPI succeeded, with a median response time of 2.6 seconds across 3,591 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.