2022-01-12 08:53:04 +00:00
openapi : 3.0 .0
servers :
- description : Official Instance
url : https://pipedapi.kavin.rocks
info :
description : This is an API specification for Piped API instances.
version : "1.0.0"
title : Piped API
contact :
email : kavin@kavin.rocks
url : https://github.com/TeamPiped/Piped/issues
license :
name : MIT
2022-01-12 23:05:22 +00:00
url : "https://opensource.org/licenses/MIT"
2022-01-12 08:53:04 +00:00
tags :
2022-10-17 14:10:05 +00:00
- name : video
description : Video related operations.
- name : channel
description : Channel related operations.
- name : playlist
description : Playlist related operations.
- name : search
description : Search related operations.
- name : feed
description : Feed related operations.
2022-01-12 08:53:04 +00:00
- name : unauthenticated
2022-10-17 14:10:05 +00:00
description : Requests that can be made by anyone, without any authentication.
2022-01-12 08:53:04 +00:00
- name : authenticated
2022-10-17 14:10:05 +00:00
description : Requests that can only be made when logged in, with an authToken.
2022-01-12 08:53:04 +00:00
paths :
/trending :
get :
tags :
- unauthenticated
summary : Gets all Trending Videos
operationId : trending
description : Gets all Trending Videos in the requested country.
parameters :
- in : query
name : region
description : The Region to get trending videos from.
required : true
example : US
schema :
2022-01-12 23:05:22 +00:00
$ref : "#/components/schemas/Regions"
2022-01-12 08:53:04 +00:00
responses :
2022-01-12 23:05:22 +00:00
"200" :
2022-01-12 08:53:04 +00:00
description : Array of trending Videos.
content :
application/json :
schema :
type : array
items :
2022-02-05 21:41:23 +00:00
$ref : "#/components/schemas/StreamItem"
2022-01-12 23:05:22 +00:00
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
2022-01-12 08:53:04 +00:00
/streams/{videoId}:
get :
tags :
2022-10-17 14:10:05 +00:00
- video
2022-01-12 08:53:04 +00:00
- unauthenticated
summary : Gets Video Information
operationId : streamInfo
description : |
Gets all available Stream information about a video.
parameters :
- in : path
name : videoId
description : The video ID of the YouTube video you want to get information about.
required : true
example : dQw4w9WgXcQ
schema :
type : string
2022-10-17 14:10:05 +00:00
pattern : ^([a-zA-Z0-9_-]{11})$
2022-01-12 08:53:04 +00:00
responses :
2022-01-12 23:05:22 +00:00
"200" :
2022-01-12 08:53:04 +00:00
description : The information about the video.
content :
application/json :
schema :
2022-01-12 23:05:22 +00:00
$ref : "#/components/schemas/VideoInfo"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
/channel/{channelId}:
get :
tags :
2022-10-17 14:10:05 +00:00
- channel
2022-01-12 23:05:22 +00:00
- unauthenticated
2023-05-01 17:24:20 +00:00
summary : Gets Channel Information from ID.
2022-01-12 23:05:22 +00:00
operationId : channelInfoId
description : |
Gets all available Channel information about a channel.
parameters :
- in : path
name : channelId
description : The channel ID of the YouTube channel you want to get information about.
required : true
example : UCs6KfncB4OV6Vug4o_bzijg
schema :
type : string
2022-10-17 14:10:05 +00:00
pattern : ^([a-zA-Z0-9_-]{24})$
2022-01-12 23:05:22 +00:00
responses :
"200" :
description : The information about the channel.
content :
application/json :
schema :
$ref : "#/components/schemas/ChannelInfo"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
/c/{name}:
get :
tags :
2022-10-17 14:10:05 +00:00
- channel
2022-01-12 23:05:22 +00:00
- unauthenticated
2023-05-01 17:24:20 +00:00
summary : Gets Channel Information from name.
2022-01-12 23:05:22 +00:00
operationId : channelInfoName
description : |
Gets all available Channel information about a channel.
parameters :
- in : path
name : name
description : The name of the YouTube channel you want to get information about.
required : true
example : Dream
schema :
type : string
responses :
"200" :
description : The information about the channel.
content :
application/json :
schema :
$ref : "#/components/schemas/ChannelInfo"
"500" :
2022-01-12 08:53:04 +00:00
description : Server Side exception
content :
application/json :
schema :
2022-01-12 23:05:22 +00:00
$ref : "#/components/schemas/ExceptionError"
/user/{username}:
get :
tags :
2022-10-17 14:10:05 +00:00
- channel
2022-01-12 23:05:22 +00:00
- unauthenticated
2023-05-01 17:24:20 +00:00
summary : Gets Channel Information from username.
2022-01-12 23:05:22 +00:00
operationId : channelInfoUsername
description : |
Gets all available Channel information about a channel.
parameters :
- in : path
name : username
description : The username of the YouTube channel you want to get information about.
required : true
example : DreamTraps
schema :
type : string
responses :
"200" :
description : The information about the channel.
content :
application/json :
schema :
$ref : "#/components/schemas/ChannelInfo"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
2022-06-12 15:18:56 +00:00
/nextpage/channel/{channelId}:
get :
tags :
2022-10-17 14:10:05 +00:00
- channel
2022-06-12 15:18:56 +00:00
- unauthenticated
summary : Gets more channel videos
operationId : channelNextPage
description : |
Gets more channel videos.
parameters :
- in : path
name : channelId
description : The channel ID of the YouTube channel you want to get more videos from.
required : true
example : UCs6KfncB4OV6Vug4o_bzijg
schema :
type : string
2022-10-17 14:10:05 +00:00
pattern : "^[a-zA-Z0-9_-]{24}$"
2022-06-12 15:18:56 +00:00
- in : query
name : nextpage
description : The next page token to get more videos from.
required : true
schema :
type : string
responses :
"200" :
description : The information about the channel.
content :
application/json :
schema :
$ref : "#/components/schemas/StreamsPage"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
2022-06-25 09:54:30 +00:00
/comments/{videoId}:
get :
tags :
2022-10-17 14:10:05 +00:00
- video
2022-06-25 09:54:30 +00:00
- unauthenticated
summary : Gets Comments
operationId : comments
description : |
Gets the comments for a video.
parameters :
- in : path
name : videoId
description : The video ID of the YouTube video you want to get comments from.
required : true
example : dQw4w9WgXcQ
schema :
type : string
2022-10-17 14:10:05 +00:00
pattern : ^([a-zA-Z0-9_-]{11})$
2022-06-25 09:54:30 +00:00
responses :
"200" :
description : The first page of comments for the video.
content :
application/json :
schema :
$ref : "#/components/schemas/CommentsPage"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
/nextpage/comments/{videoId}:
get :
tags :
2022-10-17 14:10:05 +00:00
- video
2022-06-25 09:54:30 +00:00
- unauthenticated
summary : Gets more comments
operationId : commentsNextPage
description : |
Gets more comments.
parameters :
- in : path
name : videoId
description : The video ID of the YouTube video you want to get more comments from.
required : true
example : dQw4w9WgXcQ
schema :
type : string
2022-10-17 14:10:05 +00:00
pattern : ^([a-zA-Z0-9_-]{11})$
2022-06-25 09:54:30 +00:00
- in : query
name : nextpage
description : The next page token to get more comments from.
required : true
schema :
type : string
responses :
"200" :
description : The page of comments from the video.
content :
application/json :
schema :
$ref : "#/components/schemas/CommentsPage"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
2022-07-07 17:28:06 +00:00
/search :
get :
tags :
2022-10-17 14:10:05 +00:00
- search
2022-07-07 17:28:06 +00:00
- unauthenticated
summary : Searches for videos, channels, and playlists.
operationId : search
description : |
Searches for videos, channels, and playlists.
parameters :
- in : query
name : q
description : The search query string.
required : true
example : "Techlore"
schema :
type : string
- in : query
name : filter
description : The filter parameter specifies a filter query that restricts the results to items that match the filter.
required : true
schema :
$ref : "#/components/schemas/SearchFilter"
responses :
"200" :
description : The first page of search results.
content :
application/json :
schema :
$ref : "#/components/schemas/SearchPage"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
/nextpage/search :
get :
tags :
2022-10-17 14:10:05 +00:00
- search
2022-07-07 17:28:06 +00:00
- unauthenticated
summary : Gets more search results
operationId : searchNextPage
description : |
Gets more search results.
parameters :
- in : query
name : nextpage
description : The next page token to get more search results from.
required : true
schema :
type : string
- in : query
name : q
description : The search query string.
required : true
example : "Techlore"
schema :
type : string
- in : query
name : filter
description : The filter parameter specifies a filter query that restricts the results to items that match the filter.
required : true
schema :
$ref : "#/components/schemas/SearchFilter"
responses :
"200" :
description : The page of search results.
content :
application/json :
schema :
$ref : "#/components/schemas/SearchPage"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
2022-10-17 13:46:07 +00:00
/feed/unauthenticated :
get :
tags :
2022-10-17 14:10:05 +00:00
- feed
2022-10-17 13:46:07 +00:00
- unauthenticated
summary : Generate a feed while unauthenticated, from a list of channelIds.
operationId : feedUnauthenticated
description : |
Generates a user feed while unauthenticated.
parameters :
- in : query
name : channels
description : A list of channelIds to generate a feed from.
required : true
explode : false
schema :
type : array
items :
type : string
2023-05-01 17:24:20 +00:00
pattern : "^[a-zA-Z0-9_-]{24}$"
2022-10-17 13:46:07 +00:00
example :
- UCs6KfncB4OV6Vug4o_bzijg
- UClcE-kVhqyiHCcjYwcpfj9w
responses :
"200" :
description : The video items from the feed.
content :
application/json :
schema :
type : array
items :
$ref : "#/components/schemas/StreamItem"
"500" :
description : Server Side exception
content :
application/json :
schema :
$ref : "#/components/schemas/ExceptionError"
2022-01-12 08:53:04 +00:00
components :
schemas :
Regions :
type : string
2022-01-12 23:05:22 +00:00
enum :
[
"DZ" ,
"AR" ,
"AU" ,
"AT" ,
"AZ" ,
"BH" ,
"BD" ,
"BY" ,
"BE" ,
"BO" ,
"BA" ,
"BR" ,
"BG" ,
"CA" ,
"CL" ,
"CO" ,
"CR" ,
"HR" ,
"CY" ,
"CZ" ,
"DK" ,
"DO" ,
"EC" ,
"EG" ,
"SV" ,
"EE" ,
"FI" ,
"FR" ,
"GE" ,
"DE" ,
"GH" ,
"GR" ,
"GT" ,
"HN" ,
"HK" ,
"HU" ,
"IS" ,
"IN" ,
"ID" ,
"IQ" ,
"IE" ,
"IL" ,
"IT" ,
"JM" ,
"JP" ,
"JO" ,
"KZ" ,
"KE" ,
"KW" ,
"LV" ,
"LB" ,
"LY" ,
"LI" ,
"LT" ,
"LU" ,
"MY" ,
"MT" ,
"MX" ,
"ME" ,
"MA" ,
"NP" ,
"NL" ,
"NZ" ,
"NI" ,
"NG" ,
"MK" ,
"NO" ,
"OM" ,
"PK" ,
"PA" ,
"PG" ,
"PY" ,
"PE" ,
"PH" ,
"PL" ,
"PT" ,
"PR" ,
"QA" ,
"RO" ,
"RU" ,
"SA" ,
"SN" ,
"RS" ,
"SG" ,
"SK" ,
"SI" ,
"ZA" ,
"KR" ,
"ES" ,
"LK" ,
"SE" ,
"CH" ,
"TW" ,
"TZ" ,
"TH" ,
"TN" ,
"TR" ,
"UG" ,
"UA" ,
"AE" ,
"GB" ,
"US" ,
"UY" ,
"VE" ,
"VN" ,
"YE" ,
"ZW" ,
]
2022-07-07 17:28:06 +00:00
SearchFilter :
type : string
enum :
[
"all" ,
"videos" ,
"channels" ,
"playlists" ,
"music_songs" ,
"music_videos" ,
"music_albums" ,
"music_playlists" ,
]
2022-01-12 08:53:04 +00:00
VideoInfo :
type : object
properties :
audioStreams :
type : array
items :
2022-01-12 23:05:22 +00:00
$ref : "#/components/schemas/Stream"
2022-02-07 13:23:13 +00:00
videoStreams :
type : array
items :
$ref : "#/components/schemas/Stream"
description :
type : string
description : The video's description.
dislikes :
type : integer
description : The number of dislikes the video has.
duration :
type : integer
description : The video's duration in seconds.
hls :
type : string
description : The stream of the video in a HLS manifest.
lbryId :
type : string
description : The LBRY ID of the video.
likes :
type : integer
description : The number of likes the video has.
livestream :
type : boolean
description : Whether the video is a livestream.
proxyUrl :
type : string
description : The base URL of the backend instance's proxy.
subtitles :
type : array
items :
$ref : "#/components/schemas/Subtitle"
dash :
type : string
description : The URL of the DASH manifest.
thumbnailUrl :
type : string
description : The URL of the video's thumbnail.
title :
type : string
description : The video's title.
uploadDate :
type : string
description : The date the video was uploaded.
uploader :
type : string
description : The video's uploader.
uploaderAvatar :
type : string
description : The URL of the video's uploader's avatar.
uploaderUrl :
type : string
description : The relative URL of the video's uploader.
uploaderVerified :
type : boolean
description : Whether the video's uploader is verified.
2022-06-25 06:29:07 +00:00
views :
type : integer
description : The number of views the video has.
2022-01-12 23:05:22 +00:00
relatedStreams :
type : array
items :
$ref : "#/components/schemas/StreamItem"
2022-02-07 13:23:13 +00:00
description : The related videos for the current video.
2022-01-12 23:05:22 +00:00
ChannelInfo :
type : object
properties :
avatarUrl :
type : string
description : The URL of the channel's avatar.
bannerUrl :
type : string
description : The URL of the channel's banner.
description :
type : string
description : The channel's description.
id :
type : string
description : The ID of the channel.
example : UCs6KfncB4OV6Vug4o_bzijg
name :
type : string
description : The name of the channel.
example : Techlore
nextpage :
type : string
description : The parameter used to get the next page of related videos.
2022-01-12 08:53:04 +00:00
relatedStreams :
type : array
items :
2022-01-12 23:05:22 +00:00
$ref : "#/components/schemas/StreamItem"
subscriberCount :
type : integer
description : The number of subscribers the channel has.
example : 170000
verified :
type : boolean
description : Whether the channel is verified.
example : true
2022-01-12 08:53:04 +00:00
Stream :
properties :
url :
type : string
description : The URL of the stream.
format :
type : string
description : The format of the stream.
enum : [ MPEG_4, v3GPP, WEBM, M4A, WEBMA_OPUS]
example : MPEG_4
quality :
type : string
description : The quality of the stream.
example : 1080p
mimeType :
type : string
description : The mime type of the stream.
example : video/mp4
codec :
type : string
description : The codec of the stream.
example : avc1.64002a
videoOnly :
type : boolean
bitrate :
type : integer
initStart :
type : integer
initEnd :
type : integer
indexStart :
type : integer
indexEnd :
type : integer
width :
type : integer
height :
type : integer
fps :
type : integer
StreamItem :
2022-10-17 14:10:05 +00:00
type : object
2022-01-12 08:53:04 +00:00
required :
- duration
- thumbnail
- title
- url
properties :
2023-05-01 17:24:20 +00:00
type :
type : string
description : The type of the stream item. Always stream.
2023-06-06 12:41:16 +00:00
example : stream
2022-01-12 08:53:04 +00:00
duration :
type : integer
description : The duration of the video in seconds.
thumbnail :
type : string
description : The thumbnail of the video.
title :
type : string
description : The title of the video.
2022-06-12 15:18:56 +00:00
uploaded :
type : integer
description : The date in unix epoch the video was uploaded.
2022-01-12 08:53:04 +00:00
uploadedDate :
type : string
example : 3 months ago
description : The relative date the video was uploaded on.
2022-06-12 15:18:56 +00:00
deprecated : true
nullable : true
2022-01-12 08:53:04 +00:00
uploaderAvatar :
type : string
description : The avatar of the channel of the video.
2022-06-12 15:18:56 +00:00
nullable : true
2022-02-05 21:41:23 +00:00
uploaderName :
type : string
description : The name of the channel of the video.
2022-01-12 08:53:04 +00:00
uploaderUrl :
type : string
description : The relative URL of the channel of the video.
uploaderVerified :
type : boolean
description : Whether or not the channel has a verified badge.
url :
type : string
description : The relative URL to the video.
views :
type : integer
description : The number of views the video has.
2023-05-01 17:24:20 +00:00
isShort :
type : boolean
description : Whether or not the video is a short video.
shortDescription :
type : string
description : The short description of the video.
nullable : true
2022-06-12 15:18:56 +00:00
StreamsPage :
type : object
properties :
relatedStreams :
type : array
items :
$ref : "#/components/schemas/StreamItem"
nextpage :
type : string
nullable : true
description : The parameter used to get the next page of this page.
2022-01-12 08:53:04 +00:00
ExceptionError :
required :
- error
- message
properties :
error :
type : string
description : The stacktrace provided by the server.
message :
type : string
description : The error message from the stacktrace.
description : When a server-side exception takes place.
2022-02-07 13:23:13 +00:00
Subtitle :
type : object
properties :
autoGenerated :
type : boolean
description : Whether the subtitle is auto generated.
code :
type : string
description : The language code of the subtitle.
mimeType :
type : string
description : The mime type of the subtitle.
url :
type : string
description : The URL of the subtitle.
2022-06-25 09:54:30 +00:00
Comment :
type : object
properties :
author :
type : string
description : The name of the author of the comment.
thumbnail :
type : string
description : The thumbnail/avatar of the author of the comment.
commentId :
type : string
description : The ID of the comment.
commentText :
type : string
description : The text of the comment.
commentedTime :
type : string
example : 3 months ago
description : The relative time the comment was made.
commentorUrl :
type : string
description : The relative URL of the author of the comment.
example : "/channel/UCs6KfncB4OV6Vug4o_bzijg"
repliesPage :
type : string
description : The parameter used as the nextpage to fetch replies for this comment.
likeCount :
type : integer
description : The number of likes the comment has.
2022-10-17 13:43:23 +00:00
replyCount :
type : integer
description : The number of replies the comment has.
2022-06-25 09:54:30 +00:00
hearted :
type : boolean
description : Whether the comment was hearted by the video's uploader.
pinned :
type : boolean
description : Whether the comment was pinned by the video's uploader.
verified :
type : boolean
description : Whether the author of the comment is verified.
CommentsPage :
type : object
properties :
comments :
type : array
items :
$ref : "#/components/schemas/Comment"
nextpage :
type : string
nullable : true
description : The parameter used to get the next page of comments.
disabled :
type : boolean
description : Whether or not comments are disabled on the video.
2022-07-07 17:28:06 +00:00
ChannelItem :
type : object
properties :
2023-05-01 17:24:20 +00:00
type :
type : string
description : The type of the channel item. Always channel.
2023-06-06 12:41:16 +00:00
example : channel
2022-07-07 17:28:06 +00:00
description :
type : string
description : The description of the channel.
name :
type : string
description : The name of the channel.
subscribers :
type : integer
description : The number of subscribers the channel has.
thumbnail :
type : string
description : The thumbnail of the channel.
url :
type : string
description : The relative URL of the channel.
verified :
type : boolean
description : Whether the channel is verified.
videos :
type : integer
description : The number of videos the channel has.
PlaylistItem :
type : object
properties :
2023-05-01 17:24:20 +00:00
type :
type : string
description : The type of the playlist item. Always playlist.
2023-06-06 12:41:16 +00:00
example : playlist
2022-07-07 17:28:06 +00:00
name :
type : string
description : The name of the playlist.
thumbnail :
type : string
description : The thumbnail of the playlist.
url :
type : string
description : The relative URL of the playlist.
videos :
type : integer
description : The number of videos in the playlist.
2022-07-07 17:32:31 +00:00
SearchItem :
type : object
2023-06-05 14:04:31 +00:00
discriminator :
propertyName : type
2023-06-06 14:27:03 +00:00
mapping :
stream : "#/components/schemas/StreamItem"
channel : "#/components/schemas/ChannelItem"
playlist : "#/components/schemas/PlaylistItem"
2022-07-21 04:22:43 +00:00
oneOf :
2022-07-07 17:32:31 +00:00
- $ref : "#/components/schemas/StreamItem"
- $ref : "#/components/schemas/ChannelItem"
- $ref : "#/components/schemas/PlaylistItem"
2022-07-07 17:28:06 +00:00
SearchPage :
type : object
properties :
corrected :
type : boolean
description : Whether the search query was corrected.
items :
type : array
2022-07-07 17:32:31 +00:00
items :
$ref : "#/components/schemas/SearchItem"
2022-07-07 17:28:06 +00:00
example :
- description : "Join us in spreading privacy and security to the masses. Home of: 🕵️♀️ Go Incognito | A Guide To Security, Privacy, ..."
name : "Techlore"
subscribers : 192000
thumbnail : "https://pipedproxy.kavin.rocks/lwHqZYuTM3v0oBB_RevOFbD_cHL7AWUfYID_iv8trv6_4u4r7Go_t4qFJplYiJNQVC-14Tb8=s88-c-k-c0x00ffffff-no-rw-mo?host=yt3.ggpht.com"
url : "/channel/UCs6KfncB4OV6Vug4o_bzijg"
verified : true
videos : 320
- duration : 527
shortDescription : "Top 10 best tools to boost privacy and security today. Most times, you need to put in a lot of effort to gain privacy, security, and ..."
thumbnail : "https://pipedproxy.kavin.rocks/vi/LLpLU317zfc/hq720.jpg?sqp=-oaymwEcCOgCEMoBSFbyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDZO4ZxHFoyHKmPQTZAVVVDTmB8FA&host=i.ytimg.com"
title : "Top 10 Tools To Boost Privacy & Security!"
uploaded : 1625590800000
uploadedDate : "1 year ago"
uploaderAvatar : "https://pipedproxy.kavin.rocks/lwHqZYuTM3v0oBB_RevOFbD_cHL7AWUfYID_iv8trv6_4u4r7Go_t4qFJplYiJNQVC-14Tb8=s68-c-k-c0x00ffffff-no-rw?host=yt3.ggpht.com"
uploaderName : "Techlore"
uploaderUrl : "/channel/UCs6KfncB4OV6Vug4o_bzijg"
uploaderVerified : true
url : "/watch?v=LLpLU317zfc"
views : 113599
nextpage :
type : string
nullable : true
description : The parameter used to get the next page of this page.
suggestion :
type : string
nullable : true
example : null
description : The suggested search query.