documentation/API.md

388 lines
6.6 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,
2018-09-28 15:48:24 +00:00
"published": Int64,
"publishedText": String,
2018-08-05 17:07:48 +00:00
"keywords": Array(String),
"viewCount": Int64,
"likeCount": Int32,
"dislikeCount": Int32,
"isFamilyFriendly": Bool,
"allowedRegions": Array(String),
"genre": String,
2018-09-28 15:48:24 +00:00
"genreUrl": String,
2018-08-05 17:07:48 +00:00
"author": String,
"authorId": String,
"authorUrl": String,
"lengthSeconds": Int32,
"allowRatings": Bool,
"rating": Float32,
"isListed": Bool,
2018-08-07 19:37:58 +00:00
"hlsUrl": String?,
2018-08-05 17:07:48 +00:00
"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,
2018-09-28 15:48:24 +00:00
"languageCode": String,
"url": String,
2018-08-05 17:07:48 +00:00
},
],
"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,
2018-09-28 15:48:24 +00:00
"authorId": String,
2018-08-05 17:30:33 +00:00
"authorUrl": String,
2018-08-05 17:31:51 +00:00
"published": Int64,
2018-09-28 15:48:24 +00:00
"publishedText": String,
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
2018-08-05 17:36:55 +00:00
##### GET `/api/v1/top`
> Schema:
```
2018-08-07 19:37:58 +00:00
[
{
"title": String,
"videoId": String,
"videoThumbnails": [
{
"quality": String,
"url": String,
"width": Int32,
"height" Int32
],
"lengthSeconds": Int32,
"viewCount": Int64,
"author": String,
2018-09-28 15:48:24 +00:00
"authorId": String,
2018-08-07 19:37:58 +00:00
"authorUrl": String,
"published": Int64,
2018-09-28 15:48:24 +00:00
"publishedText": String,
2018-08-07 19:37:58 +00:00
"description": String,
"descriptionHtml": String
}
]
2018-08-05 17:36:55 +00:00
```
2018-08-05 17:07:48 +00:00
2018-08-05 17:36:55 +00:00
##### GET `/api/v1/channels/:ucid`
> Schema:
```
2018-08-07 19:37:58 +00:00
{
"author": String,
"authorId": String,
"authorUrl": String,
"authorBanners": [
{
"url": String,
"width": Int32,
"height": Int32
}
],
"authorThumbnails": [
{
"url": String,
"width": Int32,
"height": Int32
}
],
"subCount": Int32,
"totalViews": Int64,
"joined": Int64,
"paid": Bool,
"isFamilyFriendly": Bool,
"description": String,
2018-09-28 15:48:24 +00:00
"descriptionHtml": String,
2018-08-07 19:37:58 +00:00
"allowedRegions": Array(String),
"latestVideos": [
{
"title": String,
"videoId": String,
2018-09-28 15:48:24 +00:00
"author": String,
"authorId": String,
"authorUrl": String,
2018-08-07 19:37:58 +00:00
"videoThumbnails": [
{
"quality": String,
"url": String,
"width": Int32,
"height": Int32
}
2018-09-28 15:48:24 +00:00
],
"description": String,
"descriptionHtml": String,
"viewCount": Int64,
"published": Int64,
"publishedText": String,
"lengthSeconds": Int32
2018-08-07 19:37:58 +00:00
}
]
}
2018-08-05 17:36:55 +00:00
```
2018-08-05 17:07:48 +00:00
2018-08-05 17:36:55 +00:00
##### GET `/api/v1/channels/:ucid/videos`
> Schema:
```
2018-08-07 19:41:28 +00:00
[
{
"title": String,
"videoId": String,
2018-09-28 15:48:24 +00:00
"author": String,
"authorId": String,
"authorUrl": String,
2018-08-07 19:41:28 +00:00
"videoThumbnails": [
{
"quality": String,
"url": String,
"width": Int32,
"height": Int32
}
],
"description": String,
"descriptionHtml": String,
2018-08-07 19:57:58 +00:00
2018-08-07 19:41:28 +00:00
"viewCount": Int64,
"published": Int64,
2018-09-28 15:48:24 +00:00
"publishedText": String,
2018-08-07 19:41:28 +00:00
"lengthSeconds": Int32
}
]
2018-08-05 17:36:55 +00:00
```
2018-08-05 17:07:48 +00:00
2018-08-08 15:36:46 +00:00
Parameters:
```
page: Int32
```
2018-08-05 17:36:55 +00:00
##### GET `/api/v1/search`
> Schema:
```
2018-08-07 19:45:21 +00:00
[
{
2018-09-28 15:48:24 +00:00
"type": "video",
2018-08-07 19:45:21 +00:00
"title": String,
"videoId": String,
"author": String,
2018-09-28 15:48:24 +00:00
"authorId": String,
2018-08-07 19:45:21 +00:00
"authorUrl": String,
"videoThumbnails": [
{
"quality": String,
"url": String,
"width": Int32,
"height": Int32
}
],
"description": String,
"descriptionHtml": String,
"viewCount": Int64,
"published": Int64,
2018-09-28 15:48:24 +00:00
"publishedText": String,
"lengthSeconds": Int32,
"liveNow": Bool
},
{
"type": "playlist",
"title": String,
"playlistId": String,
"author": String,
"authorId": String,
"authorUrl": String,
"videoCount": Int32,
"videos": [
"title": String,
"videoId": String,
"lengthSeconds": Int32,
"videoThumbnails": [
{
"quality": String,
"url": String,
"width": Int32,
"height": Int32
}
]
]
},
{
"type": "channel",
"author": String,
"authorId": String,
"authorUrl": String,
"authorThumbnails": [
{
"url": String,
"width": Int32,
"height": Int32
}
],
"subCount": Int32,
"videoCount": Int32,
"description": String,
"descriptionHtml": String,
2018-08-07 19:45:21 +00:00
}
]
2018-08-05 17:36:55 +00:00
```
2018-08-07 19:57:58 +00:00
2018-08-08 15:36:46 +00:00
Parameters
```
q: String,
page: Int32,
sort_by: "relevance", "rating", "upload_date", "view_count"
date: "hour", "today", "week", "month", "year"
duration: "short", "long"
2018-09-28 15:48:24 +00:00
type: "video", "playlist", "channel", "all", (default: video)
2018-08-08 15:36:46 +00:00
```
2018-08-07 19:57:58 +00:00
##### GET `/api/v1/captions/:id`
> Schema:
```
{
"captions": [
{
"label": String,
"languageCode": String
}
]
}
```
2018-08-08 15:36:46 +00:00
Parameters
```
label: String
```
A request with `label` will return the selected captions in WebVTT format.
2018-08-07 19:57:58 +00:00
##### GET `/api/v1/comments/:id`
> Schema:
```
{
"commentCount": Int32?,
"comments": [
{
"author": String,
"authorThumbnails": [
"url": String,
"width": Int32,
"height": Int32
],
"authorId": String,
"authorUrl": String,
"content": String,
2018-09-28 15:48:24 +00:00
"contentHtml": String,
2018-08-07 19:57:58 +00:00
"published": Int64,
2018-09-28 15:48:24 +00:00
"publishedText": String,
2018-08-07 19:57:58 +00:00
"likeCount": Int32,
"commentId": String,
"replies": {
"replyCount": Int32,
"continuation": String
2018-08-07 20:01:55 +00:00
}?
2018-08-07 19:57:58 +00:00
}
2018-08-07 20:00:34 +00:00
],
"continuation": String?
2018-08-07 19:57:58 +00:00
}
2018-08-08 15:36:46 +00:00
```
Parameters:
```
continuation: String
2018-08-07 19:57:58 +00:00
```