Skip to main content
GET
/
user
/
{username}
/
liked
Get User Liked Videos
curl --request GET \
  --url https://api.zilodata.com/api/v1/tiktok/user/{username}/liked \
  --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>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

username
string
required

Query Parameters

limit
integer
default:20

Response

200 - application/json

Successful response

videos
object[]