curl --request GET \
--url https://youtube.zilodata.com/api/v1/video/related \
--header 'x-api-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"paginationToken": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"relatedVideos": [
{
"videoId": "kJQP7kiw5Fk",
"title": "Luis Fonsi - Despacito ft. Daddy Yankee",
"author": {
"id": "UCxoq-PAQeAdk_zyg8YS0JqA",
"name": "Luis Fonsi",
"thumbnails": [
{
"url": "https://yt3.ggpht.com/...",
"width": 68,
"height": 68
}
]
},
"thumbnails": [
{
"url": "https://i.ytimg.com/vi/kJQP7kiw5Fk/hq720.jpg",
"width": 360,
"height": 202
}
],
"url": "https://www.youtube.com/watch?v=kJQP7kiw5Fk",
"viewCount": 8871198622,
"viewCountText": "8.8B views",
"published": "2017-01-13",
"publishedText": "8 years ago",
"lengthSeconds": 282,
"duration": "4:42",
"isLive": false
}
]
}
}Get related videos for a YouTube video
curl --request GET \
--url https://youtube.zilodata.com/api/v1/video/related \
--header 'x-api-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"paginationToken": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"relatedVideos": [
{
"videoId": "kJQP7kiw5Fk",
"title": "Luis Fonsi - Despacito ft. Daddy Yankee",
"author": {
"id": "UCxoq-PAQeAdk_zyg8YS0JqA",
"name": "Luis Fonsi",
"thumbnails": [
{
"url": "https://yt3.ggpht.com/...",
"width": 68,
"height": 68
}
]
},
"thumbnails": [
{
"url": "https://i.ytimg.com/vi/kJQP7kiw5Fk/hq720.jpg",
"width": 360,
"height": 202
}
],
"url": "https://www.youtube.com/watch?v=kJQP7kiw5Fk",
"viewCount": 8871198622,
"viewCountText": "8.8B views",
"published": "2017-01-13",
"publishedText": "8 years ago",
"lengthSeconds": 282,
"duration": "4:42",
"isLive": false
}
]
}
}API Key
YouTube video ID
"kJQP7kiw5Fk"
Success
"Success"
200
Show child attributes
Array of related videos
Show child attributes
YouTube video ID
"kJQP7kiw5Fk"
Video title
"Luis Fonsi - Despacito ft. Daddy Yankee"
Video author/channel information
Show child attributes
Channel ID
"UCxoq-PAQeAdk_zyg8YS0JqA"
Channel name
"Luis Fonsi"
Array of channel thumbnails
Array of video thumbnail images in different sizes
Show child attributes
Thumbnail image URL
"https://i.ytimg.com/vi/kJQP7kiw5Fk/hq720.jpg"
Thumbnail image width in pixels
360
Thumbnail image height in pixels
202
YouTube video watch URL
"https://www.youtube.com/watch?v=kJQP7kiw5Fk"
Number of video views
8871198622
Human-readable view count
"8.8B views"
Published date
"2017-01-13"
Human-readable published time
"8 years ago"
Video length in seconds
282
Video duration in format MM:SS or HH:MM:SS
"4:42"
Whether the video is a live stream
false
Was this page helpful?