Skip to main content
GET
/
user
/
posts
Get TikTok User Posts
curl --request GET \
  --url https://api.zilodata.com/api/v1/tiktok/user/posts \
  --header 'Authorization: Bearer <token>'
{
  "videos": [
    {
      "id": "7123456789012345678",
      "description": "Check out this amazing dance! #dance #viral",
      "author": "tiktok_user",
      "likeCount": 50000,
      "commentCount": 1200,
      "shareCount": 5000,
      "viewCount": 1000000,
      "duration": 30,
      "createdAt": "2025-01-15T10:30:00.000Z",
      "videoUrl": "https://www.tiktok.com/@tiktok_user/video/7123456789012345678",
      "music": {
        "title": "<string>",
        "author": "<string>"
      }
    }
  ],
  "cursor": "<string>",
  "hasMore": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

username
string
required
limit
integer
default:20
Required range: x <= 100
cursor
string

Pagination cursor

Response

200 - application/json

Successful response

videos
object[]
cursor
string
hasMore
boolean