documentation/API.md

129 lines
2.2 KiB
Markdown
Raw Normal View History

2018-08-05 17:19:59 +00:00
##### GET `/api/v1/videos/:id`
> Schema:
2018-08-05 17:07:48 +00:00
```
{
"title": String,
"videoId": String,
"videoThumbnails": [
{
"quality": String,
"url": String,
"width": Int32,
"height": Int32
},
],
"description": String,
"descriptionHtml": String,
"published": Int64
"keywords": Array(String),
"viewCount": Int64,
"likeCount": Int32,
"dislikeCount": Int32,
"isFamilyFriendly": Bool,
"allowedRegions": Array(String),
"genre": String,
"author": String,
"authorId": String,
"authorUrl": String,
"lengthSeconds": Int32,
"allowRatings": Bool,
"rating": Float32,
"isListed": Bool,
"adaptiveFormats": [
{
"index": String,
"bitrate": String,
"init": String,
"url": String,
"itag": String,
"type": String,
"clen": String,
"lmt": String,
"projectionType": Int32,
"container": String,
"encoding": String,
"qualityLabel": String?,
"resolution": String?
},
],
"formatStreams": [
{
"url": String,
"itag": String,
"type": String,
"quality": String,
"container": String,
"encoding": String,
"qualityLabel": String,
"resolution": String,
"size": String
},
],
"captions": [
{
"label": String,
"languageCode": String
},
],
"recommendedVideos": [
{
"videoId": String,
"title": String,
"videoThumbnails": [
{
"quality": String,
"url": String,
"width": Int32,
"height": Int32
},
],
"author": String,
"lengthSeconds": Int32,
"viewCountText" String
}
]
}
```
2018-08-05 17:19:59 +00:00
##### GET `/api/v1/trending`
> Schema:
```
2018-08-05 17:30:33 +00:00
[
{
"title": String,
"videoId": String,
"videoThumbnails": [
{
"quality": String,
"url": String,
"width": Int32,
"height" Int32
],
"lengthSeconds": Int32,
"viewCount": Int64,
"author": String,
"authorUrl": String,
2018-08-05 17:31:51 +00:00
"published": Int64,
2018-08-05 17:30:33 +00:00
"description": String,
"descriptionHtml": String
}
]
2018-08-05 17:19:59 +00:00
```
2018-08-05 17:07:48 +00:00
GET `/api/v1/top`
GET `/api/v1/channels/:ucid`
GET `/api/v1/channels/:ucid/videos`
GET `/api/v1/search`