Skip to main content
GET
/
video
/
{videoId}
Get Video Details
curl --request GET \
  --url https://api.zilodata.com/api/v1/tiktok/video/{videoId} \
  --header 'Authorization: Bearer <token>'
{
  "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

videoId
string
required

Response

Successful response

id
string
Example:

"7123456789012345678"

description
string
Example:

"Check out this amazing dance! #dance #viral"

author
string
Example:

"tiktok_user"

likeCount
integer
Example:

50000

commentCount
integer
Example:

1200

shareCount
integer
Example:

5000

viewCount
integer
Example:

1000000

duration
integer

Video duration in seconds

Example:

30

createdAt
string<date-time>
Example:

"2025-01-15T10:30:00.000Z"

videoUrl
string<uri>
Example:

"https://www.tiktok.com/@tiktok_user/video/7123456789012345678"

music
object