PeerTube (7.1.0)

Download OpenAPI specification:

The PeerTube API is built on HTTP(S) and is RESTful. You can use your favorite HTTP/REST library for your programming language to use PeerTube.

See the REST API quick start for a few examples of using the PeerTube API.

Authentication

When you sign up for an account on a PeerTube instance, you are given the possibility to generate sessions on it, and authenticate there using an access token. Only one access token can currently be used at a time.

Roles

Accounts are given permissions based on their role. There are three roles on PeerTube: Administrator, Moderator, and User. See the roles guide for a detail of their permissions.

Errors

The API uses standard HTTP status codes to indicate the success or failure of the API call, completed by a RFC7807-compliant response body.

HTTP 1.1 404 Not Found
Content-Type: application/problem+json; charset=utf-8

{
  "detail": "Video not found",
  "docs": "https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo",
  "status": 404,
  "title": "Not Found",
  "type": "about:blank"
}

We provide error type (following RFC7807) and code (internal PeerTube code) values for a growing number of cases, but it is still optional. Types are used to disambiguate errors that bear the same status code and are non-obvious:

HTTP 1.1 403 Forbidden
Content-Type: application/problem+json; charset=utf-8

{
  "detail": "Cannot get this video regarding follow constraints",
  "docs": "https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo",
  "status": 403,
  "title": "Forbidden",
  "type": "https://docs.joinpeertube.org/api-rest-reference.html#section/Errors/does_not_respect_follow_constraints"
}

Here a 403 error could otherwise mean that the video is private or blocklisted.

Validation errors

Each parameter is evaluated on its own against a set of rules before the route validator proceeds with potential testing involving parameter combinations. Errors coming from validation errors appear earlier and benefit from a more detailed error description:

HTTP 1.1 400 Bad Request
Content-Type: application/problem+json; charset=utf-8

{
  "detail": "Incorrect request parameters: id",
  "docs": "https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo",
  "instance": "/api/v1/videos/9c9de5e8-0a1e-484a-b099-e80766180",
  "invalid-params": {
    "id": {
      "location": "params",
      "msg": "Invalid value",
      "param": "id",
      "value": "9c9de5e8-0a1e-484a-b099-e80766180"
    }
  },
  "status": 400,
  "title": "Bad Request",
  "type": "about:blank"
}

Where id is the name of the field concerned by the error, within the route definition. invalid-params.<field>.location can be either 'params', 'body', 'header', 'query' or 'cookies', and invalid-params.<field>.value reports the value that didn't pass validation whose invalid-params.<field>.msg is about.

Deprecated error fields

Some fields could be included with previous versions. They are still included but their use is deprecated:

  • error: superseded by detail

Rate limits

We are rate-limiting all endpoints of PeerTube's API. Custom values can be set by administrators:

Endpoint (prefix: /api/v1) Calls Time frame
/* 50 10 seconds
POST /users/token 15 5 minutes
POST /users/register 2* 5 minutes
POST /users/ask-send-verify-email 3 5 minutes

Depending on the endpoint, *failed requests are not taken into account. A service limit is announced by a 429 Too Many Requests status code.

You can get details about the current state of your rate limit by reading the following headers:

Header Description
X-RateLimit-Limit Number of max requests allowed in the current time period
X-RateLimit-Remaining Number of remaining requests in the current time period
X-RateLimit-Reset Timestamp of end of current time period as UNIX timestamp
Retry-After Seconds to delay after the first 429 is received

CORS

This API features Cross-Origin Resource Sharing (CORS), allowing cross-domain communication from the browser for some routes:

| Endpoint | |------------------------- ---| | /api/* | | /download/* | | /lazy-static/* | | /.well-known/webfinger |

In addition, all routes serving ActivityPub are CORS-enabled for all origins.

Static Video Files

Get public Web Video file

PeerTube >= 6.0

path Parameters
filename
required
string

Filename

Responses

Get private Web Video file

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
filename
required
string

Filename

query Parameters
videoFileToken
string

Video file token generated by PeerTube so you don't need to provide an OAuth token in the request header.

Responses

Get public HLS video file

Authorizations:
OAuth2
path Parameters
filename
required
string

Filename

Responses

Get private HLS video file

Authorizations:
OAuth2
path Parameters
filename
required
string

Filename

query Parameters
reinjectVideoFileToken
boolean

Ask the server to reinject videoFileToken in URLs in m3u8 playlist

videoFileToken
string

Video file token generated by PeerTube so you don't need to provide an OAuth token in the request header.

Responses

Video Download

Download video files

Download video file

Generate a mp4 container that contains at most 1 video stream and at most 1 audio stream. Mainly used to merge the HLS audio only video file and the HLS video only resolution file.

path Parameters
videoId
required
integer >= 1
Example: 42

The video id

query Parameters
videoFileIds
required
Array of integers

streams of video files to mux in the output

videoFileToken
string

Video file token generated by PeerTube so you don't need to provide an OAuth token in the request header.

Responses

Video Feeds

Server syndication feeds of videos

Comments on videos feeds

path Parameters
format
required
string
Enum: "xml" "rss" "rss2" "atom" "atom1" "json" "json1"

format expected (we focus on making rss the most feature-rich ; it serves Media RSS)

query Parameters
accountId
string

limit listing comments to videos of a specific account

accountName
string

limit listing comments to videos of a specific account

videoChannelId
string

limit listing comments to videos of a specific video channel

videoChannelName
string

limit listing comments to videos of a specific video channel

videoId
string

limit listing comments to a specific video

Responses

Response samples

Content type
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>PeerTube Nightly</title>
        <link>https://peertube2.cpy.re</link>
        <description>This instance is a test instance of the PeerTube project. It is updated to the latest commit in the develop branch every business day, 8pm CET.</description>
        <lastBuildDate>Tue, 07 Oct 2025 03:03:37 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>PeerTube - https://peertube2.cpy.re</generator>
        <image>
            <title>PeerTube Nightly</title>
            <url>https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png</url>
            <link>https://peertube2.cpy.re</link>
        </image>
        <copyright>All rights reserved, unless otherwise specified in the terms specified at https://peertube2.cpy.re/about and potential licenses granted by each content's rightholder.</copyright>
        <atom:link href="https://peertube2.cpy.re/feeds/video-comments.xml?scope=local" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[Fatma Hassona, l’œil de Gaza assassinée par Israël - Pango]]></title>
            <link>https://peertube2.cpy.re/w/9gyv4bWsmJ8feGbYDuMqRL;threadId=182123</link>
            <guid>https://peertube2.cpy.re/w/9gyv4bWsmJ8feGbYDuMqRL;threadId=182123</guid>
            <pubDate>Mon, 06 Oct 2025 21:00:23 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> 
C'est monstrueux 😭</p>]]></content:encoded>
            <dc:creator>Pango</dc:creator>
        </item>
        <item>
            <title><![CDATA[De Mussolini à Trump (en passant par Retailleau) : comprendre le fascisme - Ciourte Piaille]]></title>
            <link>https://peertube2.cpy.re/w/xv8MaCHJQZwuXuUdLmS9Z4;threadId=182122</link>
            <guid>https://peertube2.cpy.re/w/xv8MaCHJQZwuXuUdLmS9Z4;threadId=182122</guid>
            <pubDate>Mon, 06 Oct 2025 15:49:31 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> 👍</p>]]></content:encoded>
            <dc:creator>Ciourte Piaille</dc:creator>
        </item>
        <item>
            <title><![CDATA[🦏 Sarkozy condamné : les médias mainstream attaquent la presse libre - Anarchadyksabled / Anarchadéglingouinax :nko_guns:]]></title>
            <link>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182120</link>
            <guid>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182120</guid>
            <pubDate>Mon, 06 Oct 2025 14:14:47 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> merci pour la vidéo ! Y'a une erreur d'affichage sur chacune des citations, au cas où hihi</p>]]></content:encoded>
            <dc:creator>Anarchadyksabled / Anarchadéglingouinax :nko_guns:</dc:creator>
        </item>
        <item>
            <title><![CDATA[Ruins of abandoned hydro plant in Italy 🇮🇹 - (Urban Exploration) Urbex & Abandoned Places - ObsidianUrbex]]></title>
            <link>https://peertube2.cpy.re/w/etHiKX3oQqJDcCbtHnnY6M;threadId=182118</link>
            <guid>https://peertube2.cpy.re/w/etHiKX3oQqJDcCbtHnnY6M;threadId=182118</guid>
            <pubDate>Mon, 06 Oct 2025 09:54:47 GMT</pubDate>
            <content:encoded><![CDATA[<p>@luca@sironi.tk Thank you so very much! I am trying to get the motivation to share more content, so I really appriciate the support. I appriciate you being here, thank you 😃</p>
]]></content:encoded>
            <dc:creator>ObsidianUrbex</dc:creator>
        </item>
        <item>
            <title><![CDATA[Ruins of abandoned hydro plant in Italy 🇮🇹 - (Urban Exploration) Urbex & Abandoned Places - Luca Sironi]]></title>
            <link>https://peertube2.cpy.re/w/etHiKX3oQqJDcCbtHnnY6M;threadId=182118</link>
            <guid>https://peertube2.cpy.re/w/etHiKX3oQqJDcCbtHnnY6M;threadId=182118</guid>
            <pubDate>Mon, 06 Oct 2025 09:38:14 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://lostpod.space/accounts/obsidianurbex" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>obsidianurbex</span></a></span> </p><p>love your channel !</p>]]></content:encoded>
            <dc:creator>Luca Sironi</dc:creator>
        </item>
        <item>
            <title><![CDATA[🦏 Sarkozy condamné : les médias mainstream attaquent la presse libre - InternetDev-Anti-Communicant🍉]]></title>
            <link>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182117</link>
            <guid>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182117</guid>
            <pubDate>Mon, 06 Oct 2025 02:18:34 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> </p><p>Les LR qui défendent Sarkozy ce n'est pas un prétexte pour attaquer la presse , mais pour draguer les militants nostalgiques de Sarkozy (bien couvés avec Macron par ailleurs)</p><p>Pour se présenter comme successeur, comme quand Chirac fût condamné, des laquais tentent de récupérer la statue du commandeur.</p>]]></content:encoded>
            <dc:creator>InternetDev-Anti-Communicant🍉</dc:creator>
        </item>
        <item>
            <title><![CDATA[🦏 Sarkozy condamné : les médias mainstream attaquent la presse libre - InternetDev-Anti-Communicant🍉]]></title>
            <link>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182112</link>
            <guid>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182112</guid>
            <pubDate>Mon, 06 Oct 2025 02:12:59 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://framapiaf.org/@tibolalu" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>tibolalu</span></a></span> <span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> </p><p>Ce qui a fait plus de mal que la propagande anti-vaccinale c'est</p><p>Les liens entre Busyn et Wuhan </p><p>Les précédents scandales de sur-commandes des vaccins H1N1 par la pharmacienne Bachelot sous Sarkozy et ses liens avec Servier</p><p>Bachelot que Macron fera ministre de la culture.</p><p>L'opacité sur la complicité de la France avec le labo de Wuhan.</p>]]></content:encoded>
            <dc:creator>InternetDev-Anti-Communicant🍉</dc:creator>
        </item>
        <item>
            <title><![CDATA[🦏 Sarkozy condamné : les médias mainstream attaquent la presse libre - InternetDev-Anti-Communicant🍉]]></title>
            <link>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182115</link>
            <guid>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182115</guid>
            <pubDate>Mon, 06 Oct 2025 02:08:24 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> </p><p>👆🏽 Moi je ne suis ni triste ni blesser et l'avis de Trump et Poutine je m'en branle total.</p><p><a href="https://video.blast-info.fr/w/8RY3k6sjgos7Yt9pbReefK?start=4m34s" target="_blank" rel="noopener noreferrer"><span>https://</span><span>video.blast-info.fr/w/8RY3k6sj</span><span>gos7Yt9pbReefK?start=4m34s</span></a></p>]]></content:encoded>
            <dc:creator>InternetDev-Anti-Communicant🍉</dc:creator>
        </item>
        <item>
            <title><![CDATA[🦏 Sarkozy condamné : les médias mainstream attaquent la presse libre - tibo lalu]]></title>
            <link>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182112</link>
            <guid>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182112</guid>
            <pubDate>Sun, 05 Oct 2025 21:56:14 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> </p><p>oups le lien est cassé
<a href="https://theconversation.com/la-guerre-cognitive-sans-bombes-ni-balles-une-zone-grise-juridique-et-strategique-261741" target="_blank" rel="noopener noreferrer"><span>https://</span><span>theconversation.com/la-guerre-</span><span>cognitive-sans-bombes-ni-balles-une-zone-grise-juridique-et-strategique-261741</span></a></p>]]></content:encoded>
            <dc:creator>tibo lalu</dc:creator>
        </item>
        <item>
            <title><![CDATA[🦏 Sarkozy condamné : les médias mainstream attaquent la presse libre - tibo lalu]]></title>
            <link>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182112</link>
            <guid>https://peertube2.cpy.re/w/8RY3k6sjgos7Yt9pbReefK;threadId=182112</guid>
            <pubDate>Sun, 05 Oct 2025 21:33:38 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> </p><p>SARKO CIVIL COG WAR</p><p>quand fabrice <a href="https://framapiaf.org/tags/arfi" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>arfi</span></a> de <a href="https://framapiaf.org/tags/mediapart" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>mediapart</span></a> parlent de trumpistaion dans la couverture médiatique de la condamnation de <a href="https://framapiaf.org/tags/sarkozy" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>sarkozy</span></a> , je pense qu'il vaut mieux parler de guerre civile cognitive, c'est à dire un acte de manipulation de masse venant de l'intérieur du pays mais qui attaque les fondements de son état de droit , la remise en cause de la séparation des pouvoirs.</p><p><a href="https://theconversation.com/la-guerre-" target="_blank" rel="noopener noreferrer"><span>https://</span><span>theconversation.com/la-guerre-</span><span></span></a></p>]]></content:encoded>
            <dc:creator>tibo lalu</dc:creator>
        </item>
        <item>
            <title><![CDATA[DGLFI ép. 64 :  ZenlakeOS, la distribution qui vous prend pour un jambon ? - angedestenebres]]></title>
            <link>https://peertube2.cpy.re/w/5uo3U81YCwNTYftF1L87va;threadId=182110</link>
            <guid>https://peertube2.cpy.re/w/5uo3U81YCwNTYftF1L87va;threadId=182110</guid>
            <pubDate>Sun, 05 Oct 2025 07:47:03 GMT</pubDate>
            <content:encoded><![CDATA[<p>Pour libreoffice, il te manque le paquet gtk lié à libreoffice.<br />
En soi, sur Mint avec Cinnamon, c'est libreoffice-gtk3 mais pour Gnome, je pense que libreoffice-gtk4 qu'il faut utiliser aujourd'hui.<br />
Y'a aussi pour l'intégréation KDE.</p>
<p>Et pour ce qui est de la distribution, j'en vois pas l'intérêt et le fait qu'il y ait deux gestionnaires de fichiers déjà épinglés, c'est un bon signe pour indiquer qu'il faut fuir 😁</p>
]]></content:encoded>
            <dc:creator>angedestenebres</dc:creator>
        </item>
        <item>
            <title><![CDATA[Mort des centres-villes : la faute aux kebabs ? - Gruik]]></title>
            <link>https://peertube2.cpy.re/w/2TE2R48F2DCmefLqmy83Gh;threadId=182109</link>
            <guid>https://peertube2.cpy.re/w/2TE2R48F2DCmefLqmy83Gh;threadId=182109</guid>
            <pubDate>Sun, 05 Oct 2025 01:54:46 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> le riesling, le racism</p>]]></content:encoded>
            <dc:creator>Gruik</dc:creator>
        </item>
        <item>
            <title><![CDATA[The end of F Droid? Red Hat hacked, Leap 16 & more Linux Weekly News - Sco :progress: :flag_mm:]]></title>
            <link>https://peertube2.cpy.re/w/3mg782EwM5tVAsmAngfWGP;threadId=182108</link>
            <guid>https://peertube2.cpy.re/w/3mg782EwM5tVAsmAngfWGP;threadId=182108</guid>
            <pubDate>Sat, 04 Oct 2025 23:32:23 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://tilvids.com/accounts/thelinuxexperiment" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>thelinuxexperiment</span></a></span> It's times like this I really wish Ubuntu Touch could get much better. It's my daily driver, which works as I dont need much in the way of apps. But has some ways to go before the wider adoption.</p><p> I am weary about even using degoogled Lineage on my spare phone. And even worried google will somehow find a way to extinguish degoogled OSs. but glad that I can still get apk's on it.</p>]]></content:encoded>
            <dc:creator>Sco :progress: :flag_mm:</dc:creator>
        </item>
        <item>
            <title><![CDATA[The end of F Droid? Red Hat hacked, Leap 16 & more Linux Weekly News - drm-free-gaming]]></title>
            <link>https://peertube2.cpy.re/w/3mg782EwM5tVAsmAngfWGP;threadId=182106</link>
            <guid>https://peertube2.cpy.re/w/3mg782EwM5tVAsmAngfWGP;threadId=182106</guid>
            <pubDate>Sat, 04 Oct 2025 17:51:25 GMT</pubDate>
            <content:encoded><![CDATA[<p>losing F-droid is going to really hurt in the long term. On the upside, custom roms that don't impose this limit on sideloading will see a huge spike in their userbase when this gets introduced</p>
]]></content:encoded>
            <dc:creator>drm-free-gaming</dc:creator>
        </item>
        <item>
            <title><![CDATA[Les Sales Majestés -  C'est la France - Ron Sagaton]]></title>
            <link>https://peertube2.cpy.re/w/fdeTgXu9aiJVyJTyyjniV4;threadId=182104</link>
            <guid>https://peertube2.cpy.re/w/fdeTgXu9aiJVyJTyyjniV4;threadId=182104</guid>
            <pubDate>Sat, 04 Oct 2025 13:09:54 GMT</pubDate>
            <content:encoded><![CDATA[<p>C'est pas mon style de musique mais on défend les mêmes valeurs. Super !</p>
]]></content:encoded>
            <dc:creator>Ron Sagaton</dc:creator>
        </item>
        <item>
            <title><![CDATA[François Béranger - Combien ça coûte - Ron Sagaton]]></title>
            <link>https://peertube2.cpy.re/w/jtRxQAUhzKaKZiMjQywWj2;threadId=182103</link>
            <guid>https://peertube2.cpy.re/w/jtRxQAUhzKaKZiMjQywWj2;threadId=182103</guid>
            <pubDate>Sat, 04 Oct 2025 13:06:06 GMT</pubDate>
            <content:encoded><![CDATA[<p>Toute ma jeunesse. Rien n'a vraiment changé. Ah si ! En pire...  Où sont les chanteurs contestataires ? Au cimetière...</p>
]]></content:encoded>
            <dc:creator>Ron Sagaton</dc:creator>
        </item>
        <item>
            <title><![CDATA[Double peine : quand la loi oblige à entretenir un parent maltraitant - Friend Icare]]></title>
            <link>https://peertube2.cpy.re/w/ge5cLimUxThMQNPLTSU6R6;threadId=182102</link>
            <guid>https://peertube2.cpy.re/w/ge5cLimUxThMQNPLTSU6R6;threadId=182102</guid>
            <pubDate>Sat, 04 Oct 2025 11:13:05 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> Sujet très intéressant, et très bonne vidéo, jusqu'au dernier plan, où on voit en haut à gauche, l'adresse à laquelle on peut écrire, qui est sur ... instagram !
La personne parle de double peine. Si elle veut éviter une triple peine aux gens, je suggère de ne surtout pas continuer sur le pire réseau qui existe. Instagram n'est SURTOUT PAS le lieu où raconter sa vie, dans TOUS les cas :</p><p>
Infographie : (<a href="https://www.statista.com/chart/24495/apps-sharing-personal-information-with-third-parties/?__sso_cookie_checker=failed" target="_blank" rel="noopener noreferrer">source</a>)</p><p>Instagram est « l'application la plus invasive », selon une nouvelle étude de pCloud
<a href="https://www.developpez.com/actu/313642/Instagram-est-l-application-la-plus-invasive-selon-une-nouvelle-etude-de-pCloud-la-societe-mere-Facebook-vient-en-deuxieme-position/" target="_blank" rel="noopener noreferrer">developpez.com/actu/313642/Ins…</a></p>]]></content:encoded>
            <dc:creator>Friend Icare</dc:creator>
        </item>
        <item>
            <title><![CDATA[Un SYNDICALISTE BASÉ parle des MOBILISATIONS depuis le 10 SEPTEMBRE ! Pascal Sudre CGT 45 - 𝕂oneko]]></title>
            <link>https://peertube2.cpy.re/w/7mJtQwKW7TUeGbovi4rFDz;threadId=182101</link>
            <guid>https://peertube2.cpy.re/w/7mJtQwKW7TUeGbovi4rFDz;threadId=182101</guid>
            <pubDate>Sat, 04 Oct 2025 09:02:21 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://lostpod.space/accounts/infogaucho" class="u-url mention" rel="noopener noreferrer" target="_blank">@<span>infogaucho</span></a></span> Je suis d’accord avec lui. Il faut que tous les syndicats suivent si l’on veut construire la grève générale.</p><p>J’étais à la manifestation à <a href="https://toot.beep.computer/tags/Besan%C3%A7on" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>Besançon</span></a> ce jeudi, et j’ai vu une femme interpeler un militant syndical <a href="https://toot.beep.computer/tags/CGT" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>CGT</span></a> sur l’inefficacité des grèves perlées. Il lui a répondu qu’elle était couverte par l’appel de <a href="https://toot.beep.computer/tags/FO" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>FO</span></a> si elle souhaitait se mettre en grève. C’est illusoire qu’une grève sérieuse s’installe si seule une poignée de syndicats lancent cet appel. C’est avec une intention claire et <strong>partagée</strong> que l’on mobilisera les travailleur·euses.</p>]]></content:encoded>
            <dc:creator>𝕂oneko</dc:creator>
        </item>
        <item>
            <title><![CDATA[Heilung - LIFA - Krigsgaldr (LIVE) - 一護]]></title>
            <link>https://peertube2.cpy.re/w/oz8j73xG8SGWeofhqSbxp6;threadId=182100</link>
            <guid>https://peertube2.cpy.re/w/oz8j73xG8SGWeofhqSbxp6;threadId=182100</guid>
            <pubDate>Sat, 04 Oct 2025 08:39:32 GMT</pubDate>
            <content:encoded><![CDATA[<p>great to see another heilung lover</p>
]]></content:encoded>
            <dc:creator>一護</dc:creator>
        </item>
        <item>
            <title><![CDATA[Macronie, RN : unis pour dominer - InternetDev-Anti-Communicant🍉]]></title>
            <link>https://peertube2.cpy.re/w/h6rCG8HB7QkjJdSyh24f5V;threadId=182096</link>
            <guid>https://peertube2.cpy.re/w/h6rCG8HB7QkjJdSyh24f5V;threadId=182096</guid>
            <pubDate>Fri, 03 Oct 2025 20:19:24 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> </p><p>Elle n'est pas un peu jeune pour lui ?</p>]]></content:encoded>
            <dc:creator>InternetDev-Anti-Communicant🍉</dc:creator>
        </item>
    </channel>
</rss>

Common videos feeds

path Parameters
format
required
string
Enum: "xml" "rss" "rss2" "atom" "atom1" "json" "json1"

format expected (we focus on making rss the most feature-rich ; it serves Media RSS)

query Parameters
accountId
string

limit listing to a specific account

accountName
string

limit listing to a specific account

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

sort
string
Example: sort=-createdAt

Sort column

videoChannelId
string

limit listing to a specific video channel

videoChannelName
string

limit listing to a specific video channel

Responses

Response samples

Content type
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:podcast="https://podcastindex.org/namespace/1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>PeerTube Nightly</title>
        <link>https://peertube2.cpy.re</link>
        <description>This instance is a test instance of the PeerTube project. It is updated to the latest commit in the develop branch every business day, 8pm CET.</description>
        <lastBuildDate>Tue, 07 Oct 2025 03:03:37 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>PeerTube - https://peertube2.cpy.re</generator>
        <image>
            <title>PeerTube Nightly</title>
            <url>https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png</url>
            <link>https://peertube2.cpy.re</link>
        </image>
        <copyright>All rights reserved, unless otherwise specified in the terms specified at https://peertube2.cpy.re/about and potential licenses granted by each content's rightholder.</copyright>
        <atom:link href="https://peertube2.cpy.re/feeds/videos.xml?scope=local" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[Intergalactic Wasabi Mix - Live Mix by snowdusk - Episode 1170 - aNONradio.net - 2025/10/05]]></title>
            <link>https://peertube2.cpy.re/w/mZLof4saEhp7nNf5s2kSnW</link>
            <guid>https://peertube2.cpy.re/w/mZLof4saEhp7nNf5s2kSnW</guid>
            <pubDate>Tue, 07 Oct 2025 00:25:00 GMT</pubDate>
            <description><![CDATA[Tracklist coming soon...]]></description>
            <content:encoded><![CDATA[<p>Tracklist coming soon...</p>
]]></content:encoded>
            <dc:creator>snowdusk_channel</dc:creator>
            <category>Music</category>
            <enclosure length="2662865517" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/aa078538-1807-4785-a8b8-185afebd9248?videoFileIds=5508503&amp;videoFileIds=5508508"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/mZLof4saEhp7nNf5s2kSnW"/>
            <media:player url="https://peertube2.cpy.re/w/mZLof4saEhp7nNf5s2kSnW"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/636acac2-794d-4655-9845-f017eda27158-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fcea0dab-5aac-41e4-be7a-164fdfc1bc6e-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2012a059-4499-48ef-b1d7-ca0057559cb0-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c9b22bd1-41e1-45b0-bebc-eda75e9471f0-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/874da072-2086-4a36-a9fd-82f7bcb0a908-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/470702dd-4fb5-406f-8e44-1e42db5e2872-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="2575080557" url="https://toobnix.org/static/streaming-playlists/hls/aa078538-1807-4785-a8b8-185afebd9248/c9101c61-82b4-4545-be9f-e520faacc05d-1080-fragmented.mp4" framerate="30" duration="3596" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="1368914938" url="https://toobnix.org/static/streaming-playlists/hls/aa078538-1807-4785-a8b8-185afebd9248/32061a6c-d06e-48f7-bb64-7302af0f4af7-720-fragmented.mp4" framerate="30" duration="3596" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="664978975" url="https://toobnix.org/static/streaming-playlists/hls/aa078538-1807-4785-a8b8-185afebd9248/769e57bf-9655-49e9-8c40-072144f5b5cc-480-fragmented.mp4" framerate="30" duration="3596" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="467767583" url="https://toobnix.org/static/streaming-playlists/hls/aa078538-1807-4785-a8b8-185afebd9248/f60e52c1-462c-46ae-adbf-54e91ec65c69-360-fragmented.mp4" framerate="30" duration="3596" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="236734550" url="https://toobnix.org/static/streaming-playlists/hls/aa078538-1807-4785-a8b8-185afebd9248/ed5b5f6c-6f51-420a-899f-387080f18cc4-240-fragmented.mp4" framerate="30" duration="3596" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="87784960" url="https://toobnix.org/static/streaming-playlists/hls/aa078538-1807-4785-a8b8-185afebd9248/a5597001-6fe7-4b61-a35f-23ee3dba5f24-0-fragmented.mp4" framerate="0" duration="3596" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/1914d5cb-a178-4b61-8851-7764c5b32f91.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/9361bd10-7401-4fd2-8d9b-2e7f6b2d2ea4.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Intergalactic Wasabi Mix - Live Mix by snowdusk - Episode 1170 - aNONradio.net - 2025/10/05</media:title>
            <media:description type="plain">Tracklist coming soon...</media:description>
        </item>
        <item>
            <title><![CDATA[4 octobre - interventions syndicales et associatives]]></title>
            <link>https://peertube2.cpy.re/w/knN8PafwzjvXUxqabvi4g9</link>
            <guid>https://peertube2.cpy.re/w/knN8PafwzjvXUxqabvi4g9</guid>
            <pubDate>Mon, 06 Oct 2025 22:44:32 GMT</pubDate>
            <description><![CDATA[Initiative du 4 octobre (Bourse  du Travail Paris, salle Hénaff) initiée par Convergence Services Publics session : Interventions syndicales et associative (CGT, Attac, Solidaires, FSU)]]></description>
            <content:encoded><![CDATA[<p><strong>Initiative du 4 octobre</strong> (Bourse  du Travail Paris, salle Hénaff)<br />
<em>initiée par Convergence Services Publics</em><br />
session : <strong>Interventions syndicales et associative (CGT, Attac, Solidaires, FSU)</strong></p>
]]></content:encoded>
            <dc:creator>Attac Nord Essonne</dc:creator>
            <category>Activism</category>
            <enclosure length="212826496" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/9ce8af6b-80b9-41cc-b3bc-b558a71e19d2?videoFileIds=5508441"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/knN8PafwzjvXUxqabvi4g9"/>
            <media:player url="https://peertube2.cpy.re/w/knN8PafwzjvXUxqabvi4g9"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ab3daa2c-b4c5-4435-9284-6b9c652cc3d9-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b0f74823-c40b-4b67-bdc8-ae7986660290-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ecc1cd10-cc55-4245-b0ad-02d1f133222b-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0fba7dae-861c-418c-b79a-3b47c5485e2a-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/008ada91-9c70-42af-a43b-61414a39016a-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/89c581ce-49be-4850-911c-02b11752e7ce-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="212826496" url="https://videos.globenet.org/static/streaming-playlists/hls/9ce8af6b-80b9-41cc-b3bc-b558a71e19d2/f720368d-be42-4c3b-9562-599a7dd93b35-720-fragmented.mp4" framerate="30" duration="1549" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="139749240" url="https://videos.globenet.org/static/streaming-playlists/hls/9ce8af6b-80b9-41cc-b3bc-b558a71e19d2/0329610e-3f25-4fdb-a786-3149f4a23f2d-480-fragmented.mp4" framerate="30" duration="1549" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="104541111" url="https://videos.globenet.org/static/streaming-playlists/hls/9ce8af6b-80b9-41cc-b3bc-b558a71e19d2/f599aa66-e329-4235-b26e-f8780df03d15-360-fragmented.mp4" framerate="30" duration="1549" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="66070872" url="https://videos.globenet.org/static/streaming-playlists/hls/9ce8af6b-80b9-41cc-b3bc-b558a71e19d2/9831cc6a-5861-4164-8d98-a395060da383-240-fragmented.mp4" framerate="30" duration="1549" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="42722931" url="https://videos.globenet.org/static/streaming-playlists/hls/9ce8af6b-80b9-41cc-b3bc-b558a71e19d2/83184e6f-98df-4027-a2a1-cfeab22c62e6-144-fragmented.mp4" framerate="30" duration="1549" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="25188505" url="https://videos.globenet.org/static/streaming-playlists/hls/9ce8af6b-80b9-41cc-b3bc-b558a71e19d2/b4abb27c-064c-48ce-83bb-b198bb4d9d37-0-fragmented.mp4" framerate="0" duration="1549" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/c58c75b2-f77a-4a5e-92b5-863e1c599127.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/984c9ba5-e8d1-4875-a684-f8cbc7be0bb6.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">4 octobre - interventions syndicales et associatives</media:title>
            <media:description type="plain">Initiative du 4 octobre (Bourse  du Travail Paris, salle Hénaff) initiée par Convergence Services Publics session : Interventions syndicales et associative (CGT, Attac, Solidaires, FSU)</media:description>
        </item>
        <item>
            <title><![CDATA[Débat entre Lemaire et Parrique - BLM prend la leçon sur la croissance]]></title>
            <link>https://peertube2.cpy.re/w/e7XfYfV12jVPhTQAnAcp62</link>
            <guid>https://peertube2.cpy.re/w/e7XfYfV12jVPhTQAnAcp62</guid>
            <pubDate>Mon, 06 Oct 2025 17:58:22 GMT</pubDate>
            <description><![CDATA[Timothée Parrique, docteur en économie écologique et Bruno Lemaire, écrivain de romans érotiques, débattent sur la croissance économique. Du grand Parrique. S'abonner à la chaîne https://www.youtube.com/@e4s_center Pour changer le système : Récl...]]></description>
            <content:encoded><![CDATA[<p>Timothée Parrique, docteur en économie écologique et Bruno Lemaire, écrivain de romans érotiques, débattent sur la croissance économique. Du grand Parrique.</p>
<p>S'abonner à la chaîne <a href="https://www.youtube.com/@e4s_center" target="_blank" rel="noopener noreferrer">https://www.youtube.com/@e4s_center</a></p>
<p>Pour changer le système :<br />
Réclamer le RIC constituant : <a href="https://petitions.assemblee-nationale.fr/initiatives/i-2491" target="_blank" rel="noopener noreferrer">https://petitions.assemblee-nationale.fr/initiatives/i-2491</a> <a href="https://www.mouvement-constituant-populaire.fr/" target="_blank" rel="noopener noreferrer">https://www.mouvement-constituant-populaire.fr/</a><br />
Changer de banque: <a href="https://www.lanef.com/" target="_blank" rel="noopener noreferrer">https://www.lanef.com/</a> <a href="https://change-de-banque.org/particulier/" target="_blank" rel="noopener noreferrer">https://change-de-banque.org/particulier/</a><br />
Passer à l'action militante: <a href="https://extinctionrebellion.fr/" target="_blank" rel="noopener noreferrer">https://extinctionrebellion.fr/</a> <a href="https://ripostealimentaire.fr/" target="_blank" rel="noopener noreferrer">https://ripostealimentaire.fr/</a><br />
Changer de travail : <a href="https://jobs.makesense.org/fr" target="_blank" rel="noopener noreferrer">https://jobs.makesense.org/fr</a></p>
<p>Sources<br />
Parrique Lemaire<br />
Musique <a href="https://www.youtube.com/watch?v=39PVEaSytpo" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=39PVEaSytpo</a></p>
<p>#parrique #écologie #économie #lemaire #extrait #ethiqueettac</p>
]]></content:encoded>
            <dc:creator>ethique_et_tac</dc:creator>
            <enclosure length="53659326" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/6a3f51b8-1c28-42b0-8724-80c21c48b4d7?videoFileIds=5508318"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/e7XfYfV12jVPhTQAnAcp62"/>
            <media:player url="https://peertube2.cpy.re/w/e7XfYfV12jVPhTQAnAcp62"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/393c2ab7-0a49-419b-acb2-f9a8dd766729-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/7ffa3ee7-52f0-4d90-aa6a-5df15c2365f7-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/eac24f1c-32c3-4973-b23c-dc6779f75f4c-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f053ca2d-af38-4b6f-92f2-0f12866e3274-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4ff33c53-1799-4339-903c-80f9e14e586a-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="53659326" url="https://static.indymotion.fr/streaming-playlists/hls/6a3f51b8-1c28-42b0-8724-80c21c48b4d7/96538b1d-7adf-4ffd-a68a-be02b355179d-1080-fragmented.mp4" framerate="25" duration="340" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="34183615" url="https://static.indymotion.fr/streaming-playlists/hls/6a3f51b8-1c28-42b0-8724-80c21c48b4d7/f7429c2f-283a-46ff-b9f7-8e8d4c767dd0-720-fragmented.mp4" framerate="25" duration="340" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="22133547" url="https://static.indymotion.fr/streaming-playlists/hls/6a3f51b8-1c28-42b0-8724-80c21c48b4d7/71dabc78-1fdd-4f64-a48f-fb672916cd43-480-fragmented.mp4" framerate="25" duration="340" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="12314183" url="https://static.indymotion.fr/streaming-playlists/hls/6a3f51b8-1c28-42b0-8724-80c21c48b4d7/bf3f3ab7-7633-46c6-84d4-2df91183f3a2-240-fragmented.mp4" framerate="25" duration="340" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="5515412" url="https://static.indymotion.fr/streaming-playlists/hls/6a3f51b8-1c28-42b0-8724-80c21c48b4d7/88552f91-f2be-4f93-8cff-eacee1791b17-0-fragmented.mp4" framerate="0" duration="340" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/14d90137-425b-4738-abb6-9e457684b964.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/e8e403a2-8b4e-4c93-9243-0820d52e6cdb.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Débat entre Lemaire et Parrique - BLM prend la leçon sur la croissance</media:title>
            <media:description type="plain">Timothée Parrique, docteur en économie écologique et Bruno Lemaire, écrivain de romans érotiques, débattent sur la croissance économique. Du grand Parrique. S'abonner à la chaîne https://www.youtube.com/@e4s_center Pour changer le système : Récl...</media:description>
        </item>
        <item>
            <title><![CDATA[Sol Zanetti candidat co-porte-parole Québec Solidaire - FACE à À GAUCHE Épisode 53]]></title>
            <link>https://peertube2.cpy.re/w/kU25AK8hrLgi4ycfqKcdro</link>
            <guid>https://peertube2.cpy.re/w/kU25AK8hrLgi4ycfqKcdro</guid>
            <pubDate>Mon, 06 Oct 2025 17:13:19 GMT</pubDate>
            <description><![CDATA[Aider a financer nos entrevues : https://ko-fi.com/agauche Sommaire: 00:00: Le maire de Québec refuse de reconnaître l’existence du profilage racial au sein de la police de Québec. Quelle est votre position à ce sujet ? 03:15 : C'est quoi "être d...]]></description>
            <content:encoded><![CDATA[<p>Aider a financer nos entrevues : <a href="https://ko-fi.com/agauche" target="_blank" rel="noopener noreferrer">https://ko-fi.com/agauche</a></p>
<p>Sommaire:<br />
00:00: Le maire de Québec refuse de reconnaître l’existence du profilage racial au sein de la police de Québec. Quelle est votre position à ce sujet ?<br />
03:15 : C'est quoi "être de gauche" ?<br />
04:45 : Comment tu te définis ?<br />
08:37 : Es-tu pour une union avec le Parti Québécois ?<br />
11:39 : Tu as fait une vidéo pour déconstruire le discours anti-immigration de PSPP. Peux-tu nous dire pourquoi ?<br />
15:04 : Y a-t-il une volonté, chez QS, de retourner aux fondamentaux, c’est-à-dire la lutte des classes, pour l’année électorale ?<br />
19:37 : Comment devrait se faire le choix des candidats de QS ?<br />
22:27 : Un an après l’affaire Haroun, n’avez-vous pas des regrets au sein du caucus des députés ? Ne pensez-vous pas que vous auriez dû être plus solidaires, au vu de l’évolution des choses et du fait qu’il avait raison ?<br />
27:48 : Selon toi, quel mode de fonctionnement interne  devrait adopter QS ?</p>
<p>Podcast Spotify : <a href="https://open.spotify.com/show/1ovb7OAtTd5a0yg4uw5wqO" target="_blank" rel="noopener noreferrer">https://open.spotify.com/show/1ovb7OAtTd5a0yg4uw5wqO</a><br />
Podcast Deezer: <a href="https://deezer.com/show/1001701601" target="_blank" rel="noopener noreferrer">https://deezer.com/show/1001701601</a><br />
Discord: <a href="https://discord.gg/NGBc4nTrEu" target="_blank" rel="noopener noreferrer">https://discord.gg/NGBc4nTrEu</a><br />
Twitter: <a href="https://twitter.com/AgaucheYT" target="_blank" rel="noopener noreferrer">https://twitter.com/AgaucheYT</a><br />
Instagram: <a href="http://instagram.com/agauche_officiel" target="_blank" rel="noopener noreferrer">instagram.com/agauche_officiel</a><br />
Facebook: <a href="http://facebook.com/%C3%80-gauche-101898352035753" target="_blank" rel="noopener noreferrer">facebook.com/À-gauche-101898352035753</a><br />
BleuSky: <a href="https://bsky.app/profile/agauche.bsky.social" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/agauche.bsky.social</a></p>
]]></content:encoded>
            <dc:creator>a_gauche</dc:creator>
            <enclosure length="294282369" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/a120f9c8-a8eb-4d27-9666-ab97035f90d8?videoFileIds=5508302"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/kU25AK8hrLgi4ycfqKcdro"/>
            <media:player url="https://peertube2.cpy.re/w/kU25AK8hrLgi4ycfqKcdro"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c849bf1c-ca11-4f97-b127-0d2a7a3995cb-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4658c96f-f100-4abe-a133-7889abd6fd34-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1dfc863f-482c-46a3-a999-9553f9e3a563-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6c2fa9a3-0ddc-41c1-af01-139a7180d647-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fe336150-192e-4aa1-9c67-1140ecfe39ff-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="294282369" url="https://static.indymotion.fr/streaming-playlists/hls/a120f9c8-a8eb-4d27-9666-ab97035f90d8/99792b98-c76d-436f-9d40-0e32ded5472a-1080-fragmented.mp4" framerate="30" duration="1874" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="181953661" url="https://static.indymotion.fr/streaming-playlists/hls/a120f9c8-a8eb-4d27-9666-ab97035f90d8/32ab8e37-3c39-46fa-a21f-4b78b2c03a27-720-fragmented.mp4" framerate="30" duration="1874" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="118009526" url="https://static.indymotion.fr/streaming-playlists/hls/a120f9c8-a8eb-4d27-9666-ab97035f90d8/4008a3a1-96f4-49bb-95b6-f2a78a3a42b4-480-fragmented.mp4" framerate="30" duration="1874" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="66617052" url="https://static.indymotion.fr/streaming-playlists/hls/a120f9c8-a8eb-4d27-9666-ab97035f90d8/d43fc0d5-5dd1-4655-9376-ee124161ef90-240-fragmented.mp4" framerate="30" duration="1874" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="30530188" url="https://static.indymotion.fr/streaming-playlists/hls/a120f9c8-a8eb-4d27-9666-ab97035f90d8/d9b7fdbf-2a15-40c1-880a-349ed7250239-0-fragmented.mp4" framerate="0" duration="1874" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/9a4856c6-e877-4bd3-9c42-669324487bad.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/98d97b42-2c43-4f99-b4e4-78a5eec66d51.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Sol Zanetti candidat co-porte-parole Québec Solidaire - FACE à À GAUCHE Épisode 53</media:title>
            <media:description type="plain">Aider a financer nos entrevues : https://ko-fi.com/agauche Sommaire: 00:00: Le maire de Québec refuse de reconnaître l’existence du profilage racial au sein de la police de Québec. Quelle est votre position à ce sujet ? 03:15 : C'est quoi "être d...</media:description>
        </item>
        <item>
            <title><![CDATA[(Preview) Quand Sarkozy va-t-il aller en prison?]]></title>
            <link>https://peertube2.cpy.re/w/7zMJsRCniSZEdthhMnetoe</link>
            <guid>https://peertube2.cpy.re/w/7zMJsRCniSZEdthhMnetoe</guid>
            <pubDate>Mon, 06 Oct 2025 16:53:40 GMT</pubDate>
            <description><![CDATA[Découvrez Holy en cliquant ici : https://fr.weareholy.com/LeDroit/Youtube  - Code LEDROIT5 : 5 € de réduction sur toutes les premières commandes dès 14,99€ d’achat et LEDROIT : 10% de réduction sur toutes les commandes des clients récurrents POUR ...]]></description>
            <content:encoded><![CDATA[<p>Découvrez Holy en cliquant ici : <a href="https://fr.weareholy.com/LeDroit/Youtube" target="_blank" rel="noopener noreferrer">https://fr.weareholy.com/LeDroit/Youtube</a>  - Code LEDROIT5 : 5 € de réduction sur toutes les premières commandes dès 14,99€ d’achat et LEDROIT : 10% de réduction sur toutes les commandes des clients récurrents<br />
POUR EN SAVOIR PLUS, APPUYEZ SUR "AFFICHER PLUS" ➡️➡️➡️➡️➡️</p>
<p>Retrouvez moi sur Twitch : <a href="https://www.twitch.tv/vousavezledroit" target="_blank" rel="noopener noreferrer">https://www.twitch.tv/vousavezledroit</a></p>
<p>Merci aux donatrices et donateurs qui ont rendu cette vidéo possible (la liste est en fin de description 👇🏻)<br />
Vous pouvez soutenir l'aventure ici ↙<br />
🔗 Tipeee :  <a href="https://fr.tipeee.com/vousavezledroit" target="_blank" rel="noopener noreferrer">https://fr.tipeee.com/vousavezledroit</a><br />
🔗 Patreon : <a href="https://www.patreon.com/c/vousavezledroit" target="_blank" rel="noopener noreferrer">https://www.patreon.com/c/vousavezledroit</a><br />
🔗 Paypal : <a href="https://paypal.me/vousavezledroit" target="_blank" rel="noopener noreferrer">https://paypal.me/vousavezledroit</a><br />
🔗 La boutique : <a href="https://www.youtube.com/c/Vousavezledroit/store" target="_blank" rel="noopener noreferrer">https://www.youtube.com/c/Vousavezledroit/store</a></p>
<p>Pour nous contacter, Tricottine et moi :<br />
Vous avez le droit - B.P. 22 -  37160 Descartes - France</p>
<p>=======SOURCES &amp; LECTURES=======<br />
🔗 Jugement du 25 septembre 2025 : <a href="https://www.canevet.org/spip.php?article632" target="_blank" rel="noopener noreferrer">https://www.canevet.org/spip.php?article632</a><br />
🔗 L'association de malfaiteurs dans le code pénal : <a href="https://tinyurl.com/567vbvym" target="_blank" rel="noopener noreferrer">https://tinyurl.com/567vbvym</a><br />
🔗 Palmade en prison : <a href="https://youtu.be/zeyC2ZG7t3U" target="_blank" rel="noopener noreferrer">https://youtu.be/zeyC2ZG7t3U</a><br />
🔗 Marine Le Pen inéligible : <a href="https://youtu.be/myFFTBKo6Yk" target="_blank" rel="noopener noreferrer">https://youtu.be/myFFTBKo6Yk</a></p>
<p>=======ERRATA=======<br />
Rien pour le moment 😃</p>
<p>====================================================================<br />
🛎️ Pour ne rien rater, pensez à vous ABONNER et à ACTIVER LA PETITE CLOCHE 🛎️<br />
🔗 Les lives sur Twitch : <a href="https://www.twitch.tv/vousavezledroit" target="_blank" rel="noopener noreferrer">https://www.twitch.tv/vousavezledroit</a><br />
🔗 Le discord : <a href="https://discord.gg/q727hr8P7t" target="_blank" rel="noopener noreferrer">https://discord.gg/q727hr8P7t</a><br />
🔗 <a href="https://bsky.app/profile/vousavezledroit.bsky.social" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/vousavezledroit.bsky.social</a><br />
🔗 Mastodon : <a href="http://mamot.fr/@vousavezledroit" target="_blank" rel="noopener noreferrer">http://mamot.fr/@vousavezledroit</a><br />
🔗 Facebook (page de fans) : <a href="https://www.facebook.com/VousAvezLeDroitPageFan" target="_blank" rel="noopener noreferrer">https://www.facebook.com/VousAvezLeDroitPageFan</a><br />
🔗 Instagram (page de fans) : <a href="https://www.instagram.com/vousavezledroit_/?hl=fr" target="_blank" rel="noopener noreferrer">https://www.instagram.com/vousavezledroit_/?hl=fr</a></p>
<p>=======CREDITS======= 📄<br />
Production : Sébastien Canévet<br />
Animations &amp; Montage : Banniwam<br />
Modération (commentaires) : Handymanon, Philémon Mavercoin, Patate Bionic<br />
Musique du générique : Reprise  par Alexandre Moonwell</p>
<p>=====+++LISTE DES DONATRICES ET DONATEURS ========<br />
Abcdefgh, ACOP, Alain Dubois, Alekshar, Alexandra, Alexandrexii, André Fourtier, André, alias DD, Anoldor, Anskess, Antigone, Antoine T, Arnaud Revel, Arthka, ArthurDozias, Arual Strudel, Ascho, Astrobax, Asuma, Aurélien, Babarouioui, Bananebleue, Barbecue, BB_Feta, Bengamix, Benjamin Briot, Benjamin G., Benoit, Bethany77, Beton04f, Bidou_Ifool, Blastex, Bloup, Bobylou, Bolbi, BriceLight, Brigitte Vasseur, Bruno, C4s4, Calvi's, Captain Lulu, Captn, Cartin, Cboy13, Cca, Chris67, Christophe93, Clément Masson, Cloleu, ClusterEdit, Coriande Bambou, Cort-X-, Corwin, Cynthia_65, Cyril E., Damien, Dandelionmood, Danonino, David cabasson, Dbo, Delance, Delphineprof, Denis Solaro, Dimitri, DJMiaou, Drakehinst, Draki, Eibu, Eloiseisa, Emilie, Emmanuel Militon, EmmanuelB, Epiphane, Eric, ETimS, Exo33, Ezequiel, Fab_Ortuno, Fabien, Fabrice, Falcon900b, FennNaten, Filigrimm, Fjanvier, Flo-rat-le, Florent Lizzit, Florent Rollan, ForestRCW, François, François B, François LEIBER, Fred, Fred_Bobos, Funibus, G108473626255647409185, Ga75, Gab, GammaOne, Gautiercorgne, Geekosaurus, Gobarlum, GoldPhantom, Guilhem, Guillaume, Guimack, Gwen, Gαëtan, Hasphese, HeleneTheSky, Hervé COSTIL, Holtcana, Hum, Hykosit, Im, Imryss, Informancer, Isabelle, Jaco512, Jean AIMARD, Jean-Luc maurin, Jean-René Brunet, Jeremie, Jimih 6703, Joce, Jocelyn Lusseau, Joffrey, JonathanS, Jp_clerc, Julie, Julien, Julien Del Rio (Jorodan), K_lep, Keltriss, Kemmei, Kenairod, Kerharo, Kernel64bits, Kilinette, KitsuneTsubaki, KoalaFilou, Kuralia, Lagoon, Laurent, LeConTesteur, Leeunem, Lëhna, Léo, Léopold, Leopoldd, LeReveur, LeSourdre, Lionel, Lucas Ramel, LuccioErrera, Ludwig, Lyle Kersten, Lyrian Sept, M_9, M&amp;D, MarcFrancis, Marielle.dumont, Martix, Math38000, Mathieu, Matsama, Matthieu, Max54130, Maxime, Maxtruc, McMAnyo, Menard, Michael, Monsieur Edelweiss, Morziloeil M, MrClem, MrPhy14, Myna65, Naga_partout, Nanawel, Nanstremouilles, Nemeo, NEMESIS, Nicolain, Nicolas, Nobill, Olivier, Olivier Jacquemin, Onchosorus, Orpheas, Otoro, Paméla, Pancake95, Panda Alpin, Pastoinou, Patamodeler, Patate, Patoch, Paul, Peck, Père Blaise, Perroway, Philip Masse, Philippe Chaissac, Phl1982, Pickrat, Pieralb, Pierreonthenet, Pikkabbu, Pinkenblue, Polytopal, Poupoulh5n1, Ppet3765, PRFD, Pythonroux, R373, RedHood, Reelfi, Richard Deloge, River Champeimont, RKorben, Robin, Roland, Romain, Romain Berraud, Romain BONNINGUE, Romain JACQUEL, Romifla, Ronron_Ninchat, Roulia, Samuel Vimaire, Sarvhangel, Scorpio, SEB813, Sébas, Sébastien (<a href="http://sbeccompany.fr" target="_blank" rel="noopener noreferrer">sbeccompany.fr</a>), SharkCrazy7, SKBo, Small_duck, Socolin, Ssitnam, Stef, Stéphane Klein, Stéphane R, Sterrier, Supertonio, Sybarit, T3hty, Tadasteampunk, Taufir, Technisavoir, Tengwall Palantir, Thibault, Thomas Lajeunesse, Thomasage, Tisiphone, Titemoku, Tix, Tlaf, Tlemoine, TotoxXme, Trémouilles, Tristan, Valéry, Vega, Vetalu, Vin Cent, Vincent Zafra, Virginie Q, VirtualUnicorn, Vitetrouveunnomcool, Vorty, Wanderer_Sarcastic, Yaya, YBau, Yoann KRIEGER, Yza, Zuhlfain, Zul</p>
]]></content:encoded>
            <dc:creator>vous_avez_le_droit</dc:creator>
            <enclosure length="206114909" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/354e8f4e-762f-462b-826a-93eaa039ba4d?videoFileIds=5508296"/>
            <media:community>
                <media:statistics views="7"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/7zMJsRCniSZEdthhMnetoe"/>
            <media:player url="https://peertube2.cpy.re/w/7zMJsRCniSZEdthhMnetoe"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/88cba31c-9011-4776-8220-2dd9cf6be0b6-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f8e9d9e2-1842-4955-9256-df23c9f794b8-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1a8dca8b-7c13-44a3-bcac-f44adf3ed54d-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2d0e42e2-ea2b-4a0f-8e11-bdc7d58a783b-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c23eb14b-de2f-44e3-89a8-794ee4088572-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="206114909" url="https://static.indymotion.fr/streaming-playlists/hls/354e8f4e-762f-462b-826a-93eaa039ba4d/8e2e2dda-884e-4a2d-ba16-a4ea718ed37b-1080-fragmented.mp4" framerate="25" duration="1254" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="143596470" url="https://static.indymotion.fr/streaming-playlists/hls/354e8f4e-762f-462b-826a-93eaa039ba4d/8bedd3a2-28a6-4ec8-bd71-b5270287c052-720-fragmented.mp4" framerate="25" duration="1254" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="94406723" url="https://static.indymotion.fr/streaming-playlists/hls/354e8f4e-762f-462b-826a-93eaa039ba4d/ceaa25cd-9c63-4bdf-9b43-44d39b58608d-480-fragmented.mp4" framerate="25" duration="1254" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="49986339" url="https://static.indymotion.fr/streaming-playlists/hls/354e8f4e-762f-462b-826a-93eaa039ba4d/54748e32-83b6-41c4-9833-ddffd89cc328-240-fragmented.mp4" framerate="25" duration="1254" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="20846922" url="https://static.indymotion.fr/streaming-playlists/hls/354e8f4e-762f-462b-826a-93eaa039ba4d/da0cc515-f89f-49ac-a3e3-a4a48fe280b7-0-fragmented.mp4" framerate="0" duration="1254" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/50767f08-6dca-454b-98e6-b3238285a7fd.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/a09f3ee7-455c-4611-ad39-14eef358010e.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">(Preview) Quand Sarkozy va-t-il aller en prison?</media:title>
            <media:description type="plain">Découvrez Holy en cliquant ici : https://fr.weareholy.com/LeDroit/Youtube  - Code LEDROIT5 : 5 € de réduction sur toutes les premières commandes dès 14,99€ d’achat et LEDROIT : 10% de réduction sur toutes les commandes des clients récurrents POUR ...</media:description>
        </item>
        <item>
            <title><![CDATA[Vers la fin du dialogue social ? #macron #syndicats #politique #manifestation]]></title>
            <link>https://peertube2.cpy.re/w/oZjbCDj6fnLSSUPcNvyrhk</link>
            <guid>https://peertube2.cpy.re/w/oZjbCDj6fnLSSUPcNvyrhk</guid>
            <pubDate>Mon, 06 Oct 2025 16:25:04 GMT</pubDate>
            <dc:creator>Info Gaucho</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="46248763" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/ba29a6b9-ab2d-4200-9d26-2ee5b91c8107?videoFileIds=5508292&amp;videoFileIds=5508293"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/oZjbCDj6fnLSSUPcNvyrhk"/>
            <media:player url="https://peertube2.cpy.re/w/oZjbCDj6fnLSSUPcNvyrhk"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/50aea4e5-9dc6-4845-885a-3a5c99019cc1-1920-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8c85242e-38a4-427c-abaf-1c9ac98e5f1e-640-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f67dff16-24d3-448e-9c65-c5f34c70c403-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1920" fileSize="44720813" url="https://lostpod.space/static/streaming-playlists/hls/ba29a6b9-ab2d-4200-9d26-2ee5b91c8107/8b9400e7-a293-4a78-8586-988c22ead80d-1080-fragmented.mp4" framerate="30" duration="113" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="640" fileSize="13602959" url="https://lostpod.space/static/streaming-playlists/hls/ba29a6b9-ab2d-4200-9d26-2ee5b91c8107/77279598-2dc9-42a5-a590-abc3ea7ca137-360-fragmented.mp4" framerate="30" duration="113" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1527950" url="https://lostpod.space/static/streaming-playlists/hls/ba29a6b9-ab2d-4200-9d26-2ee5b91c8107/dbbb4811-4403-482b-b77d-423b00769717-0-fragmented.mp4" framerate="0" duration="113" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/84dade99-8977-4b2a-a8f9-743f13b1cfe5.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/ecd9db85-7e83-4d86-8dea-9f7e265c0e7f.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Vers la fin du dialogue social ? #macron #syndicats #politique #manifestation</media:title>
        </item>
        <item>
            <title><![CDATA[Fatma Hassona, l’œil de Gaza assassinée par Israël]]></title>
            <link>https://peertube2.cpy.re/w/9gyv4bWsmJ8feGbYDuMqRL</link>
            <guid>https://peertube2.cpy.re/w/9gyv4bWsmJ8feGbYDuMqRL</guid>
            <pubDate>Mon, 06 Oct 2025 16:00:42 GMT</pubDate>
            <description><![CDATA[Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir Piégée dans la prison à ciel ouvert de Gaza, la photojournaliste Fatma Hassona raconte son quotidien dans le documentaire Put Your Soul on Your Hand and Walk. À trav...]]></description>
            <content:encoded><![CDATA[<p>Soutenez Blast, nouveau média indépendant : <a href="https://www.blast-info.fr/soutenir" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/soutenir</a></p>
<p>Piégée dans la prison à ciel ouvert de Gaza, la photojournaliste Fatma Hassona raconte son quotidien dans le documentaire Put Your Soul on Your Hand and Walk. À travers son dialogue avec la réalisatrice Sepideh Farsi et ses photographies, elle témoigne de la vie sous les bombardements, des déplacements contraints et de la perte de ses proches.</p>
<p>Le 16 avril 2025, Fatma Hassona est assassinée lors d’une frappe ciblée de l’armée israélienne.</p>
<p>Journaliste : Elsa Galland<br />
Montage : Sandra Perrin<br />
Son : Baptiste Veilhan, Théo Duchesne<br />
Graphisme : Morgane Sabouret, Margaux Simono<br />
Production : Hicham Tragha<br />
Directeur du développement des collaborations extérieures : Mathias Enthoven<br />
Co-directrice de la rédaction : Soumaya Benaïssa<br />
Directeur de la publication : Denis Robert</p>
<p>Le site : <a href="https://www.blast-info.fr/" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/</a><br />
Facebook : <a href="https://www.facebook.com/blastofficiel" target="_blank" rel="noopener noreferrer">https://www.facebook.com/blastofficiel</a><br />
Twitter : <a href="https://twitter.com/blast_france" target="_blank" rel="noopener noreferrer">https://twitter.com/blast_france</a><br />
Instagram : <a href="https://www.instagram.com/blastofficiel/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/blastofficiel/</a><br />
Mastodon : <a href="https://mamot.fr/web/@blast_info" target="_blank" rel="noopener noreferrer">https://mamot.fr/web/@blast_info</a><br />
Peertube : <a href="https://video.blast-info.fr/" target="_blank" rel="noopener noreferrer">https://video.blast-info.fr/</a><br />
Twitch : <a href="https://www.twitch.tv/blastinfo" target="_blank" rel="noopener noreferrer">https://www.twitch.tv/blastinfo</a><br />
Bluesky : <a href="https://bsky.app/profile/blast-info.fr" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/blast-info.fr</a></p>
<p>#FatmaHassona<br />
#Gaza<br />
#photographe</p>
]]></content:encoded>
            <dc:creator>blast, le souffle de l’info</dc:creator>
            <enclosure length="225580194" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/42f54b95-8c92-48c9-952d-ac2828aafe8e?videoFileIds=5508286&amp;videoFileIds=5508290"/>
            <media:community>
                <media:statistics views="58"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/9gyv4bWsmJ8feGbYDuMqRL"/>
            <media:player url="https://peertube2.cpy.re/w/9gyv4bWsmJ8feGbYDuMqRL"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5e6f91f4-1690-4971-ba94-65af4eb87efd-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f58f4db6-8ac0-4e73-a90c-88d2db8de371-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/321283fe-27c2-4d02-8b69-3428d1c6dff7-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/83d522a4-2778-40c5-bde3-722cafc655fa-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e26c6d2b-50a5-4ae4-bbfb-69dad9e99f56-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="210639762" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/42f54b95-8c92-48c9-952d-ac2828aafe8e/a4551aff-d8b5-4a0a-83f2-6ff107d8860a-1080-fragmented.mp4" framerate="25" duration="920" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="108921641" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/42f54b95-8c92-48c9-952d-ac2828aafe8e/f9d557d3-d557-47c6-99ed-3696298069cc-720-fragmented.mp4" framerate="25" duration="920" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="59824405" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/42f54b95-8c92-48c9-952d-ac2828aafe8e/62986664-f0cd-44fc-ab3f-32f5be380f00-480-fragmented.mp4" framerate="25" duration="920" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="20341733" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/42f54b95-8c92-48c9-952d-ac2828aafe8e/e14b30f1-ac70-47af-99d7-ace5074b4e48-240-fragmented.mp4" framerate="25" duration="920" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="14940432" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/42f54b95-8c92-48c9-952d-ac2828aafe8e/e7a1daf5-d94b-42db-862c-8c885780c353-0-fragmented.mp4" framerate="0" duration="920" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/b8d867f7-c671-4aa2-836b-462c60294dc3.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/ab7f735d-8bf6-4eff-aa90-dcd4cdfbbcf6.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Fatma Hassona, l’œil de Gaza assassinée par Israël</media:title>
            <media:description type="plain">Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir Piégée dans la prison à ciel ouvert de Gaza, la photojournaliste Fatma Hassona raconte son quotidien dans le documentaire Put Your Soul on Your Hand and Walk. À trav...</media:description>
        </item>
        <item>
            <title><![CDATA[Bompard fait tomber Lecornu en 24 heures !]]></title>
            <link>https://peertube2.cpy.re/w/xjAceyfeD4QXoBTxHqVFdD</link>
            <guid>https://peertube2.cpy.re/w/xjAceyfeD4QXoBTxHqVFdD</guid>
            <pubDate>Mon, 06 Oct 2025 10:55:27 GMT</pubDate>
            <description><![CDATA[Aujourd'hui le 06 octobre 2025 Lecornu a donné sa démission !!! Hier encore, Manuel Bompard menaçait Sébastien Lecornu d’une motion de censure sur le plateau de LCI. Moins de vingt-quatre heures plus tard, le Premier ministre a présenté sa démiss...]]></description>
            <content:encoded><![CDATA[<p>Aujourd'hui le 06 octobre 2025 Lecornu a donné sa démission !!!</p>
<p>Hier encore, Manuel Bompard menaçait Sébastien Lecornu d’une motion de censure sur le plateau de LCI.<br />
Moins de vingt-quatre heures plus tard, le Premier ministre a présenté sa démission.<br />
Une séquence politique éclair qui illustre la fragilité du gouvernement Macron et la montée de la tension à l’Assemblée nationale.<br />
Voici les mots prononcés par Bompard… la veille de la chute.</p>
<p>#Bompard #macron #Lecornu #démission #censure</p>
<p>Pensez à réduire la qualité de la vidéo.</p>
<p>Pour changer le système :<br />
Réclamer le RIC constituant : <a href="https://petitions.assemblee-nationale.fr/initiatives/i-2491" target="_blank" rel="noopener noreferrer">https://petitions.assemblee-nationale.fr/initiatives/i-2491</a><br />
Changer de banque: <a href="https://www.lanef.com/" target="_blank" rel="noopener noreferrer">https://www.lanef.com/</a> <a href="https://change-de-banque.org/particulier/" target="_blank" rel="noopener noreferrer">https://change-de-banque.org/particulier/</a><br />
Passer à l'action militante: <a href="https://extinctionrebellion.fr/" target="_blank" rel="noopener noreferrer">https://extinctionrebellion.fr/</a> <a href="https://ripostealimentaire.fr/" target="_blank" rel="noopener noreferrer">https://ripostealimentaire.fr/</a><br />
Changer de travail : <a href="https://jobs.makesense.org/fr" target="_blank" rel="noopener noreferrer">https://jobs.makesense.org/fr</a></p>
<p>Source:</p>
<p>Vidéo: <a href="https://www.youtube.com/watch?v=sMJFMf40FOw" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=sMJFMf40FOw</a></p>
<p>Musique: Invisible Beauty - Aakash Gandhi</p>
<p>Montage: lakl42</p>
<p>Réponses au quiz de fin :</p>
<p>/!\ Description à ne pas lire avant d'avoir vu la vidéo entièrement<br />
/!\</p>
<p>/!\</p>
<p>/!\ <br />
/!\</p>
<p>Quel outil constitutionnel Bompard cite comme alternative au 49.3 pour imposer un texte ?<br />
➡ Le vote bloqué.</p>
<p>Quelle taxe emblématique Bompard mentionne-t-il comme symbole du débat sur la justice fiscale ?<br />
➡ La taxe Zucman.</p>
<p>Quelle mesure budgétaire Bompard cite comme signe de continuité avec Emmanuel Macron ?<br />
➡ La prime Macron.</p>
]]></content:encoded>
            <dc:creator>ethique_et_tac</dc:creator>
            <enclosure length="159750539" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/fda3c249-051f-485c-bd1b-40146dee0201?videoFileIds=5508264"/>
            <media:community>
                <media:statistics views="4"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/xjAceyfeD4QXoBTxHqVFdD"/>
            <media:player url="https://peertube2.cpy.re/w/xjAceyfeD4QXoBTxHqVFdD"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/52a99551-61a9-4b3b-9bd8-a3d37e58ba05-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0724d9ed-35de-4c9c-a28f-028cf5fd88a0-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/46f5bc63-ee7e-4a73-b698-5b60e4d857a2-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b80c948a-00cb-4629-ad93-c7ade2705b40-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/943ec66e-8734-4a37-af70-b03c89cb0739-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="159750539" url="https://static.indymotion.fr/streaming-playlists/hls/fda3c249-051f-485c-bd1b-40146dee0201/1c338353-301b-4f35-a34a-edf183b27a31-1080-fragmented.mp4" framerate="25" duration="795" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="107287046" url="https://static.indymotion.fr/streaming-playlists/hls/fda3c249-051f-485c-bd1b-40146dee0201/b7237f5d-edce-43ea-84c5-a7dd1abc5f3c-720-fragmented.mp4" framerate="25" duration="795" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="66917708" url="https://static.indymotion.fr/streaming-playlists/hls/fda3c249-051f-485c-bd1b-40146dee0201/3d89e389-f125-47e4-8bd7-5293a8058a8f-480-fragmented.mp4" framerate="25" duration="795" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="34365438" url="https://static.indymotion.fr/streaming-playlists/hls/fda3c249-051f-485c-bd1b-40146dee0201/f4847174-5962-430f-a15c-4c2f8b25af1e-240-fragmented.mp4" framerate="25" duration="795" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="12932860" url="https://static.indymotion.fr/streaming-playlists/hls/fda3c249-051f-485c-bd1b-40146dee0201/db348e0d-f59f-4582-81dc-bc72276c9f20-0-fragmented.mp4" framerate="0" duration="795" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/d643bf9a-3403-45fc-bc80-f14644e0c5c5.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/f23346a9-2adb-4a6f-9a2f-c4f88637b7d5.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Bompard fait tomber Lecornu en 24 heures !</media:title>
            <media:description type="plain">Aujourd'hui le 06 octobre 2025 Lecornu a donné sa démission !!! Hier encore, Manuel Bompard menaçait Sébastien Lecornu d’une motion de censure sur le plateau de LCI. Moins de vingt-quatre heures plus tard, le Premier ministre a présenté sa démiss...</media:description>
        </item>
        <item>
            <title><![CDATA[MIKAMI Chie - 2024 - War Clouds [戦雲] - bande-annonce en japonais sans sous-titres]]></title>
            <link>https://peertube2.cpy.re/w/8Mxtw4npSaV7MJNwJVRGCa</link>
            <guid>https://peertube2.cpy.re/w/8Mxtw4npSaV7MJNwJVRGCa</guid>
            <pubDate>Mon, 06 Oct 2025 10:33:42 GMT</pubDate>
            <dc:creator>Fenêtres sur le Japon</dc:creator>
            <enclosure length="26433693" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/3f0bd64b-8ef0-4c6f-9039-5e43ac3ac289?videoFileIds=5508239"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/8Mxtw4npSaV7MJNwJVRGCa"/>
            <media:player url="https://peertube2.cpy.re/w/8Mxtw4npSaV7MJNwJVRGCa"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e858edbe-cf87-4fba-970d-6a59383682fb-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/296a7f74-9f6f-4d41-902d-d446e3849b31-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c91c1f9a-a45c-4dff-9527-b486fc1e261b-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1c98f4df-cbee-4a89-b797-04e633154f71-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4a7cac4e-fca4-424c-96f8-12f7967abeb7-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/bd3c32a3-855e-4890-a444-fce52669313f-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="26433693" url="https://videos.globenet.org/static/streaming-playlists/hls/3f0bd64b-8ef0-4c6f-9039-5e43ac3ac289/a609dd50-cc5c-4dc6-86d0-750849d56aff-720-fragmented.mp4" framerate="24" duration="122" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="13089726" url="https://videos.globenet.org/static/streaming-playlists/hls/3f0bd64b-8ef0-4c6f-9039-5e43ac3ac289/da314504-dccd-42dd-8480-22308a02527c-480-fragmented.mp4" framerate="24" duration="122" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="9533394" url="https://videos.globenet.org/static/streaming-playlists/hls/3f0bd64b-8ef0-4c6f-9039-5e43ac3ac289/d22cfc4e-68eb-4bf4-a272-ff43936cf57a-360-fragmented.mp4" framerate="24" duration="122" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="5919461" url="https://videos.globenet.org/static/streaming-playlists/hls/3f0bd64b-8ef0-4c6f-9039-5e43ac3ac289/f7782194-b921-4a03-86a8-a977aa0701cf-240-fragmented.mp4" framerate="24" duration="122" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="3700377" url="https://videos.globenet.org/static/streaming-playlists/hls/3f0bd64b-8ef0-4c6f-9039-5e43ac3ac289/88c2220c-09b9-4168-85cd-1cef4ecf4f92-144-fragmented.mp4" framerate="24" duration="122" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1963299" url="https://videos.globenet.org/static/streaming-playlists/hls/3f0bd64b-8ef0-4c6f-9039-5e43ac3ac289/d2dc93a7-dd95-4def-bdc9-6216be3ee193-0-fragmented.mp4" framerate="0" duration="122" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/ce0a0252-03ae-4c0d-b33a-cb03cf3c219b.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/24a6dd26-ea37-48e9-afdc-aef9f5446a76.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">MIKAMI Chie - 2024 - War Clouds [戦雲] - bande-annonce en japonais sans sous-titres</media:title>
        </item>
        <item>
            <title><![CDATA[Presidential Libraries: Last Week Tonight with John Oliver (HBO)]]></title>
            <link>https://peertube2.cpy.re/w/8Tsd8q8Kaef3rT2dMhM11U</link>
            <guid>https://peertube2.cpy.re/w/8Tsd8q8Kaef3rT2dMhM11U</guid>
            <pubDate>Mon, 06 Oct 2025 10:03:45 GMT</pubDate>
            <description><![CDATA[John Oliver discusses what presidential libraries are exactly, how presidents use them to fundraise in office, how Donald Trump might make existing problems even worse and – of course – some stuff about one president’s unique inseam. Subscribe to...]]></description>
            <content:encoded><![CDATA[<p>John Oliver discusses what presidential libraries are exactly, how presidents use them to fundraise in office, how Donald Trump might make existing problems even worse and – of course – some stuff about one president’s unique inseam.</p>
<p>Subscribe to the #lastweektonight YouTube channel for more almost news as it almost happens: <a href="http://www.youtube.com/lastweektonight" target="_blank" rel="noopener noreferrer">www.youtube.com/lastweektonight</a></p>
<p>Or find us on your favorite social media platform we may or may not have discussed at length on the show:</p>
<p>Instagram: <a href="https://www.instagram.com/lastweektonight" target="_blank" rel="noopener noreferrer">https://www.instagram.com/lastweektonight</a><br />
TikTok: <a href="https://www.tiktok.com/@lastweektonighthbo" target="_blank" rel="noopener noreferrer">https://www.tiktok.com/@lastweektonighthbo</a><br />
Threads: <a href="https://www.threads.net/@lastweektonight" target="_blank" rel="noopener noreferrer">https://www.threads.net/@lastweektonight</a><br />
Bluesky: <a href="https://bsky.app/profile/lastweektonight.com" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/lastweektonight.com</a><br />
Facebook: <a href="https://www.facebook.com/lastweektonight" target="_blank" rel="noopener noreferrer">https://www.facebook.com/lastweektonight</a></p>
<p>Or visit our official site for all that other stuff at once: <a href="https://www.hbo.com/lastweektonight" target="_blank" rel="noopener noreferrer">https://www.hbo.com/lastweektonight</a></p>
]]></content:encoded>
            <dc:creator>LastWeekTonight (unofficial mirror)</dc:creator>
            <category>Entertainment</category>
            <enclosure length="400437272" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/3fdf0e08-d681-43ee-980a-1329f6ebd1dc?videoFileIds=5508233"/>
            <media:community>
                <media:statistics views="4"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/8Tsd8q8Kaef3rT2dMhM11U"/>
            <media:player url="https://peertube2.cpy.re/w/8Tsd8q8Kaef3rT2dMhM11U"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5ffd33ef-891a-4789-9d7b-6a46c7ee8d50-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3ccc5dc8-1daf-48b0-b3bb-403e6d83b332-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fae3767a-2bb8-495f-a32c-5ef33829bf68-480-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="400437272" url="https://tube.fede.re/static/streaming-playlists/hls/3fdf0e08-d681-43ee-980a-1329f6ebd1dc/aecc1819-6c28-4ec4-9df3-1479154cc7b1-1080-fragmented.mp4" framerate="30" duration="1765" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="206135680" url="https://tube.fede.re/static/streaming-playlists/hls/3fdf0e08-d681-43ee-980a-1329f6ebd1dc/d8ec0d0e-14fb-46e2-bf69-a127ff7c0479-720-fragmented.mp4" framerate="30" duration="1765" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="125454322" url="https://tube.fede.re/static/streaming-playlists/hls/3fdf0e08-d681-43ee-980a-1329f6ebd1dc/29753255-1281-4453-97e4-74c0e1f6259d-480-fragmented.mp4" framerate="30" duration="1765" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/af38374d-ec0b-447b-9f81-0c0f22a93afc.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/c6bf34df-8693-4cf2-9edd-6cb116e0f8f5.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Presidential Libraries: Last Week Tonight with John Oliver (HBO)</media:title>
            <media:description type="plain">John Oliver discusses what presidential libraries are exactly, how presidents use them to fundraise in office, how Donald Trump might make existing problems even worse and – of course – some stuff about one president’s unique inseam. Subscribe to...</media:description>
        </item>
        <item>
            <title><![CDATA[Greenstove Cottage Ireland text - (Urban Exploration) Urbex & Abandoned Places]]></title>
            <link>https://peertube2.cpy.re/w/pTyvD3QJHRWjQPGkASJgGV</link>
            <guid>https://peertube2.cpy.re/w/pTyvD3QJHRWjQPGkASJgGV</guid>
            <pubDate>Mon, 06 Oct 2025 09:28:19 GMT</pubDate>
            <description><![CDATA[An abandoned cottage, laying hidden in rural Ireland 🇮🇪 This lonely cottage has been abandoned for many years. Likely around 19 years, judging by a moody calendar that hangs from the wall in the kitchen. #abandonedplaces #ireland #abandone...]]></description>
            <content:encoded><![CDATA[<p>An abandoned cottage, laying hidden in rural Ireland 🇮🇪</p>
<p>This lonely cottage has been abandoned for many years. Likely around 19 years, judging by a moody calendar that hangs from the wall in the kitchen.</p>
<p>#abandonedplaces #ireland #abandonedireland #abandonedhouse</p>
]]></content:encoded>
            <dc:creator>Obsidian Urbex - Abandoned Places Videos</dc:creator>
            <category>Entertainment</category>
            <enclosure length="18367354" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/c1752835-f9e0-4e3d-84fd-87e6efbdd711?videoFileIds=5508219&amp;videoFileIds=5508222"/>
            <media:community>
                <media:statistics views="12"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/pTyvD3QJHRWjQPGkASJgGV"/>
            <media:player url="https://peertube2.cpy.re/w/pTyvD3QJHRWjQPGkASJgGV"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6e731b7f-65d0-499f-8561-ae89ccd18aba-1920-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/236151bd-3d05-4a4e-97b0-9a48feec563a-854-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/de56dc11-81d3-4623-b673-589377d833b2-256-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3831aa64-991e-469e-ab57-fb65299171a9-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1920" fileSize="17319730" url="https://lostpod.space/static/streaming-playlists/hls/c1752835-f9e0-4e3d-84fd-87e6efbdd711/4e9146fa-f514-4624-867a-f9b80147d931-1080-fragmented.mp4" framerate="30" duration="43" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="854" fileSize="4040101" url="https://lostpod.space/static/streaming-playlists/hls/c1752835-f9e0-4e3d-84fd-87e6efbdd711/0ff0a269-cf2b-450c-9750-fa51c986e025-480-fragmented.mp4" framerate="30" duration="43" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="256" fileSize="611197" url="https://lostpod.space/static/streaming-playlists/hls/c1752835-f9e0-4e3d-84fd-87e6efbdd711/108d869e-1754-443b-8603-51daa3f3c1b9-144-fragmented.mp4" framerate="30" duration="43" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1047624" url="https://lostpod.space/static/streaming-playlists/hls/c1752835-f9e0-4e3d-84fd-87e6efbdd711/840aecfe-a0f1-44f3-9a58-a03a2ba6deec-0-fragmented.mp4" framerate="0" duration="43" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/ea1b53e7-5b93-4cb5-9575-2463f04cbe22.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/061a41a5-5753-4e6e-bb74-b7fa1a9402e9.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Greenstove Cottage Ireland text - (Urban Exploration) Urbex &amp; Abandoned Places</media:title>
            <media:description type="plain">An abandoned cottage, laying hidden in rural Ireland 🇮🇪 This lonely cottage has been abandoned for many years. Likely around 19 years, judging by a moody calendar that hangs from the wall in the kitchen. #abandonedplaces #ireland #abandone...</media:description>
        </item>
        <item>
            <title><![CDATA[L’horizontalité à gauche, ça craint ? - @PaduTeam]]></title>
            <link>https://peertube2.cpy.re/w/17zss3nGNVrZC2zqbzJF8t</link>
            <guid>https://peertube2.cpy.re/w/17zss3nGNVrZC2zqbzJF8t</guid>
            <pubDate>Mon, 06 Oct 2025 07:40:48 GMT</pubDate>
            <description><![CDATA[https://youtu.be/Bq0M6pFITLk?si=-IRx1j72EWpsvlvm]]></description>
            <content:encoded><![CDATA[<p><a href="https://youtu.be/Bq0M6pFITLk?si=-IRx1j72EWpsvlvm" target="_blank" rel="noopener noreferrer">https://youtu.be/Bq0M6pFITLk?si=-IRx1j72EWpsvlvm</a></p>
]]></content:encoded>
            <dc:creator>a_gauche</dc:creator>
            <enclosure length="14515078" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/00eb14a3-b57c-4403-8b27-4e78cc62c98d?videoFileIds=5508214"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/17zss3nGNVrZC2zqbzJF8t"/>
            <media:player url="https://peertube2.cpy.re/w/17zss3nGNVrZC2zqbzJF8t"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2e0f7f3a-61d1-434d-8403-054b7b1c7e0c-398-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fe3a6a00-7d66-4331-9730-b0bbce0c573c-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/719fcb7d-941f-49fd-83cb-7a4c0bb12538-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="398" fileSize="14515078" url="https://static.indymotion.fr/streaming-playlists/hls/00eb14a3-b57c-4403-8b27-4e78cc62c98d/f3394eed-e5ba-4ebe-95bb-eedeb4ac617e-398-fragmented.mp4" framerate="30" duration="303" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="9609337" url="https://static.indymotion.fr/streaming-playlists/hls/00eb14a3-b57c-4403-8b27-4e78cc62c98d/ff457328-bb4b-4299-bac0-9a0101796142-240-fragmented.mp4" framerate="30" duration="303" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="4895765" url="https://static.indymotion.fr/streaming-playlists/hls/00eb14a3-b57c-4403-8b27-4e78cc62c98d/132340de-339f-4fb7-8a0f-5d7b3e17d3d3-0-fragmented.mp4" framerate="0" duration="303" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/3a84feb0-85b7-4095-9795-c15cc03d072a.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/723f860e-96ae-4bd4-94ca-9c8a6ff4b493.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">L’horizontalité à gauche, ça craint ? - @PaduTeam</media:title>
            <media:description type="plain">https://youtu.be/Bq0M6pFITLk?si=-IRx1j72EWpsvlvm</media:description>
        </item>
        <item>
            <title><![CDATA[Parigo #275 - Commerces en gare et station : trop ou pas assez ?]]></title>
            <link>https://peertube2.cpy.re/w/2q8TgffJ3avh5tGyzQkngi</link>
            <guid>https://peertube2.cpy.re/w/2q8TgffJ3avh5tGyzQkngi</guid>
            <pubDate>Mon, 06 Oct 2025 07:12:28 GMT</pubDate>
            <description><![CDATA[Cette semaine, Parigo part faire du shopping dans les couloirs du métro et dans les gares franciliennes. On y trouve de tout, mais pas partout : clairement, toutes les gares et stations ne sont pas logées à la même enseigne. Pourquoi ces disparité...]]></description>
            <content:encoded><![CDATA[<p>Cette semaine, Parigo part faire du shopping dans les couloirs du métro et dans les gares franciliennes. On y trouve de tout, mais pas partout : clairement, toutes les gares et stations ne sont pas logées à la même enseigne.<br />
Pourquoi ces disparités ? Et à quand des boutiques et des services pour tous ?</p>
<p>Abonnez-vous à notre chaîne YouTube :<br />
▶ <a href="https://www.youtube.com/user/France3Paris" target="_blank" rel="noopener noreferrer">https://www.youtube.com/user/France3Paris</a></p>
<p>Retrouvez-nous sur nos sites :<br />
▶ Replays : <a href="http://france.tv/idf" target="_blank" rel="noopener noreferrer">france.tv/idf</a><br />
<a href="https://www.france.tv/france-3/paris-ile-de-france/" target="_blank" rel="noopener noreferrer">https://www.france.tv/france-3/paris-ile-de-france/</a></p>
<p>▶ Info :  <a href="http://idf.france3.fr" target="_blank" rel="noopener noreferrer">idf.france3.fr</a><br />
<a href="http://france3-regions.franceinfo.fr/paris-ile-de-france/" target="_blank" rel="noopener noreferrer">http://france3-regions.franceinfo.fr/paris-ile-de-france/</a></p>
<p>Sur Instagram :<br />
▶ <a href="https://www.instagram.com/france3paris/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/france3paris/</a></p>
<p>Sur Facebook :<br />
▶ <a href="https://www.facebook.com/france3paris" target="_blank" rel="noopener noreferrer">https://www.facebook.com/france3paris</a></p>
<p>Sur X :<br />
▶ <a href="https://x.com/france3_paris" target="_blank" rel="noopener noreferrer">https://x.com/france3_paris</a></p>
<p>Sur TikTok<br />
▶  <a href="https://www.tiktok.com/@france3paris_idf" target="_blank" rel="noopener noreferrer">https://www.tiktok.com/@france3paris_idf</a></p>
]]></content:encoded>
            <dc:creator>Parigo</dc:creator>
            <enclosure length="252304867" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/0b77d904-dd59-403a-89b0-083ff1566c03?videoFileIds=5508210"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/2q8TgffJ3avh5tGyzQkngi"/>
            <media:player url="https://peertube2.cpy.re/w/2q8TgffJ3avh5tGyzQkngi"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/a939c713-273f-4570-9392-2c315cf62a88-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ea8479cb-bffd-4295-95e0-4c10b628b8b2-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c8b44d04-5ab0-4fdd-bd7a-9522a1d2728e-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5d34e2ff-b796-49b2-be33-9a474b264be4-360-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="252304867" url="https://tube.anjara.eu/static/streaming-playlists/hls/0b77d904-dd59-403a-89b0-083ff1566c03/59d5287c-ff37-4ae5-bfa3-6a39674174ec-1080-fragmented.mp4" framerate="25" duration="882" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="178371160" url="https://tube.anjara.eu/static/streaming-playlists/hls/0b77d904-dd59-403a-89b0-083ff1566c03/534ec1a2-7793-460c-aac2-579656021fb9-720-fragmented.mp4" framerate="25" duration="882" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="106382584" url="https://tube.anjara.eu/static/streaming-playlists/hls/0b77d904-dd59-403a-89b0-083ff1566c03/6dfc3dbc-96d4-48d2-9124-80a2c0db7895-480-fragmented.mp4" framerate="25" duration="882" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="77674011" url="https://tube.anjara.eu/static/streaming-playlists/hls/0b77d904-dd59-403a-89b0-083ff1566c03/30f1d248-5fbd-499e-b818-85bf76035ce2-360-fragmented.mp4" framerate="25" duration="882" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/49f184ed-6456-41f3-82e0-af1c6b8f1790.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/2b00ee8e-4083-42d7-9aaf-7e250ecbd9a0.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Parigo #275 - Commerces en gare et station : trop ou pas assez ?</media:title>
            <media:description type="plain">Cette semaine, Parigo part faire du shopping dans les couloirs du métro et dans les gares franciliennes. On y trouve de tout, mais pas partout : clairement, toutes les gares et stations ne sont pas logées à la même enseigne. Pourquoi ces disparité...</media:description>
        </item>
        <item>
            <title><![CDATA[S12 E25: US Military, ICE & Presidential Libraries: 10/5/25: Last Week Tonight with John Oliver]]></title>
            <link>https://peertube2.cpy.re/w/6oj2X3sygwr3T9t8hnT8Z2</link>
            <guid>https://peertube2.cpy.re/w/6oj2X3sygwr3T9t8hnT8Z2</guid>
            <pubDate>Mon, 06 Oct 2025 06:08:14 GMT</pubDate>
            <description><![CDATA[John Oliver discusses last week’s rare gathering of U.S. military officials, continued ICE raids around the country, and how presidential libraries can present more problems than you might expect, including some troubling history about one preside...]]></description>
            <content:encoded><![CDATA[<p>John Oliver discusses last week’s rare gathering of U.S. military officials, continued ICE raids around the country, and how presidential libraries can present more problems than you might expect, including some troubling history about one president and his horse.</p>
<p>Subscribe to the #lastweektonight YouTube channel for more almost news as it almost happens: <a href="http://www.youtube.com/lastweektonight" target="_blank" rel="noopener noreferrer">www.youtube.com/lastweektonight</a></p>
<p>Or find us on your favorite social media platform we may or may not have discussed at length on the show:</p>
<p>Instagram: <a href="https://www.instagram.com/lastweektonight" target="_blank" rel="noopener noreferrer">https://www.instagram.com/lastweektonight</a><br />
TikTok: <a href="https://www.tiktok.com/@lastweektonighthbo" target="_blank" rel="noopener noreferrer">https://www.tiktok.com/@lastweektonighthbo</a><br />
Threads: <a href="https://www.threads.net/@lastweektonight" target="_blank" rel="noopener noreferrer">https://www.threads.net/@lastweektonight</a><br />
Bluesky: <a href="https://bsky.app/profile/lastweektonight.com" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/lastweektonight.com</a><br />
Facebook: <a href="https://www.facebook.com/lastweektonight" target="_blank" rel="noopener noreferrer">https://www.facebook.com/lastweektonight</a></p>
<p>Or visit our official site for all that other stuff at once: <a href="https://www.hbo.com/lastweektonight" target="_blank" rel="noopener noreferrer">https://www.hbo.com/lastweektonight</a></p>
]]></content:encoded>
            <dc:creator>LastWeekTonight (unofficial mirror)</dc:creator>
            <category>Entertainment</category>
            <enclosure length="541929679" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/2b9b2b7a-d4dc-45e6-888d-0b7379d7986f?videoFileIds=5508207"/>
            <media:community>
                <media:statistics views="24"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/6oj2X3sygwr3T9t8hnT8Z2"/>
            <media:player url="https://peertube2.cpy.re/w/6oj2X3sygwr3T9t8hnT8Z2"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/7ecb54ec-7805-4f9d-8343-c7f15fd16e31-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6988095c-2515-4de2-8904-e62dd9a50531-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/a90197a2-4c0e-453e-aa83-f69d4afa7241-480-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="541929679" url="https://tube.fede.re/static/streaming-playlists/hls/2b9b2b7a-d4dc-45e6-888d-0b7379d7986f/7262b6ff-4d9f-49e0-8e28-a0df8696f49c-1080-fragmented.mp4" framerate="30" duration="2380" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="282594456" url="https://tube.fede.re/static/streaming-playlists/hls/2b9b2b7a-d4dc-45e6-888d-0b7379d7986f/a88d19f4-02f7-42d5-87eb-bba1f408792f-720-fragmented.mp4" framerate="30" duration="2380" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="172323560" url="https://tube.fede.re/static/streaming-playlists/hls/2b9b2b7a-d4dc-45e6-888d-0b7379d7986f/a892fb15-f116-4b2a-97ae-d5ea18a2d1b9-480-fragmented.mp4" framerate="30" duration="2380" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/ea3d7a58-9c9e-4e2c-8969-cf1dd0656d04.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/88bd634e-ac6e-48d7-8d87-f22b68c719ac.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">S12 E25: US Military, ICE &amp; Presidential Libraries: 10/5/25: Last Week Tonight with John Oliver</media:title>
            <media:description type="plain">John Oliver discusses last week’s rare gathering of U.S. military officials, continued ICE raids around the country, and how presidential libraries can present more problems than you might expect, including some troubling history about one preside...</media:description>
        </item>
        <item>
            <title><![CDATA[Rony Brauman - Israël-Palestine : Le poids des mots 1/2]]></title>
            <link>https://peertube2.cpy.re/w/6AagWZDAbJdpSwiXk4tr5q</link>
            <guid>https://peertube2.cpy.re/w/6AagWZDAbJdpSwiXk4tr5q</guid>
            <pubDate>Sun, 05 Oct 2025 22:31:21 GMT</pubDate>
            <description><![CDATA[Conférence donnée par Rony Brauman à la 48è Hestajada de las arts à Uzeste - 21 aout 2025 - PART 1. L'ex-président de MSF analyse la propagande pro-israélienne. SITE : https://www.cinemutins.com]]></description>
            <content:encoded><![CDATA[<p>Conférence donnée par Rony Brauman à la 48è Hestajada de las arts à Uzeste - 21 aout 2025 - PART 1.</p>
<p>L'ex-président de MSF analyse la propagande pro-israélienne.</p>
<p>SITE : <a href="https://www.cinemutins.com" target="_blank" rel="noopener noreferrer">https://www.cinemutins.com</a></p>
]]></content:encoded>
            <dc:creator>Le podcast des mutins</dc:creator>
            <enclosure length="345109450" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/2d42b287-a64e-422b-8ce0-3b0be621660c?videoFileIds=5508165"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/6AagWZDAbJdpSwiXk4tr5q"/>
            <media:player url="https://peertube2.cpy.re/w/6AagWZDAbJdpSwiXk4tr5q"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/eed415eb-e8fb-4b24-ab20-53b86a8a8551-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2365c63c-ce8b-40c9-992e-0c70dc3b0a43-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fb553447-9897-4183-a114-82c28afbe8ff-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cc68abba-f511-4f67-97c6-3f712c1d9471-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d57ac123-6dc9-4d45-b138-21d7ea39530a-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="345109450" url="https://static.indymotion.fr/streaming-playlists/hls/2d42b287-a64e-422b-8ce0-3b0be621660c/c86f968a-563c-4902-8fdb-47b19e21ce06-1080-fragmented.mp4" framerate="50" duration="4035" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="214553722" url="https://static.indymotion.fr/streaming-playlists/hls/2d42b287-a64e-422b-8ce0-3b0be621660c/00da7777-2792-4adf-b9e8-54c6e1f9f452-720-fragmented.mp4" framerate="50" duration="4035" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="178003287" url="https://static.indymotion.fr/streaming-playlists/hls/2d42b287-a64e-422b-8ce0-3b0be621660c/7a1c482d-c11c-4881-9c87-366fa392f8d1-480-fragmented.mp4" framerate="25" duration="4035" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="106353061" url="https://static.indymotion.fr/streaming-playlists/hls/2d42b287-a64e-422b-8ce0-3b0be621660c/0a876329-3dc3-480f-af2b-a4cf09124a56-240-fragmented.mp4" framerate="25" duration="4035" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="65959213" url="https://static.indymotion.fr/streaming-playlists/hls/2d42b287-a64e-422b-8ce0-3b0be621660c/cf945826-dc85-42ee-bb37-64e137f06315-0-fragmented.mp4" framerate="0" duration="4035" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/6f8fe862-f099-4324-b1ea-223843c08829.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/a49091f1-3d02-40d2-b8d7-39361849ad96.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Rony Brauman - Israël-Palestine : Le poids des mots 1/2</media:title>
            <media:description type="plain">Conférence donnée par Rony Brauman à la 48è Hestajada de las arts à Uzeste - 21 aout 2025 - PART 1. L'ex-président de MSF analyse la propagande pro-israélienne. SITE : https://www.cinemutins.com</media:description>
        </item>
        <item>
            <title><![CDATA[Rony Brauman - Israël-Palestine : Le poids des mots 2/2]]></title>
            <link>https://peertube2.cpy.re/w/mRajuLjfmxTee34APxkq6L</link>
            <guid>https://peertube2.cpy.re/w/mRajuLjfmxTee34APxkq6L</guid>
            <pubDate>Sun, 05 Oct 2025 22:03:34 GMT</pubDate>
            <description><![CDATA[Conférence donnée par Rony Brauman à la 48è Hestajada de las arts à Uzeste - 21 aout 2025 - PART 2. L'ex-président de MSF analyse la propagande pro-israélienne. LETTRE INFO DES MUTINS : https://www.lesmutins.org/spip.php?page=newsletter S...]]></description>
            <content:encoded><![CDATA[<p>Conférence donnée par Rony Brauman à la 48è Hestajada de las arts à Uzeste - 21 aout 2025 - PART 2.</p>
<p>L'ex-président de MSF analyse la propagande pro-israélienne.</p>
<p>LETTRE INFO DES MUTINS : <a href="https://www.lesmutins.org/spip.php?page=newsletter" target="_blank" rel="noopener noreferrer">https://www.lesmutins.org/spip.php?page=newsletter</a></p>
<p>SITE : <a href="https://www.cinemutins.com" target="_blank" rel="noopener noreferrer">https://www.cinemutins.com</a></p>
]]></content:encoded>
            <dc:creator>Le podcast des mutins</dc:creator>
            <enclosure length="164401371" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/a8d3f5fd-bee7-4014-a30c-63e63d8c5ef6?videoFileIds=5508161"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/mRajuLjfmxTee34APxkq6L"/>
            <media:player url="https://peertube2.cpy.re/w/mRajuLjfmxTee34APxkq6L"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e8097a05-bf83-44b6-a4c3-d7910564825b-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/faef8c20-41a5-44d5-8fb8-82079a297e00-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1060ff76-d049-470f-b14f-eec457c723c1-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c74a7108-9757-4b62-b774-219b1c8a527c-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="164401371" url="https://static.indymotion.fr/streaming-playlists/hls/a8d3f5fd-bee7-4014-a30c-63e63d8c5ef6/5b559e5a-874f-4a49-ab1c-9da56ed885e9-720-fragmented.mp4" framerate="50" duration="2997" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="124802150" url="https://static.indymotion.fr/streaming-playlists/hls/a8d3f5fd-bee7-4014-a30c-63e63d8c5ef6/6738d6f5-87a9-4d2a-b9eb-34bb3802c4a2-480-fragmented.mp4" framerate="25" duration="2997" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="78541224" url="https://static.indymotion.fr/streaming-playlists/hls/a8d3f5fd-bee7-4014-a30c-63e63d8c5ef6/b5c864c8-c846-4246-b46e-d514cc797ea8-240-fragmented.mp4" framerate="25" duration="2997" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="48957605" url="https://static.indymotion.fr/streaming-playlists/hls/a8d3f5fd-bee7-4014-a30c-63e63d8c5ef6/fec6d3f0-da1b-4f81-af3d-327a27b5a3ce-0-fragmented.mp4" framerate="0" duration="2997" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/5fcc7208-bdaf-4c67-a82a-e17f23f359f4.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/0b525271-716d-4100-9221-54a4ad37dc81.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Rony Brauman - Israël-Palestine : Le poids des mots 2/2</media:title>
            <media:description type="plain">Conférence donnée par Rony Brauman à la 48è Hestajada de las arts à Uzeste - 21 aout 2025 - PART 2. L'ex-président de MSF analyse la propagande pro-israélienne. LETTRE INFO DES MUTINS : https://www.lesmutins.org/spip.php?page=newsletter S...</media:description>
        </item>
        <item>
            <title><![CDATA[Dans les rushes (inédit) du nouveau film de Pierre Carles]]></title>
            <link>https://peertube2.cpy.re/w/wqB7AfHTfpsX2mPqNKUC3T</link>
            <guid>https://peertube2.cpy.re/w/wqB7AfHTfpsX2mPqNKUC3T</guid>
            <pubDate>Sun, 05 Oct 2025 21:38:21 GMT</pubDate>
            <description><![CDATA[https://www.cinemutins.com/films/1803-dans-les-rushes-inedit-du-nouveau-film-de-pierre-carles Quand Pierre de Bousquet de Florian et la DST mentent à propos de Georges Abdallah. En exclusivité pour les abonnés de CinéMutins Un extrait des ru...]]></description>
            <content:encoded><![CDATA[<p><a href="https://www.cinemutins.com/films/1803-dans-les-rushes-inedit-du-nouveau-film-de-pierre-carles" target="_blank" rel="noopener noreferrer">https://www.cinemutins.com/films/1803-dans-les-rushes-inedit-du-nouveau-film-de-pierre-carles</a></p>
<p>Quand Pierre de Bousquet de Florian et la DST mentent à propos de Georges Abdallah.<br />
En exclusivité pour les abonnés de CinéMutins<br />
Un extrait des rushes du tournage du film de Pierre Carles en cours de montage.</p>
<p>Dans les oubliettes de la République : Georges Abdallah, le film-enquête de Pierre Carles, produit par Annie Gonzalez (C-P Productions), sur la tentative d'exécution d'une « peine de mort lente », en France, à l'encontre d'un militant communiste libanais ayant appartenu à un groupe armé pro-palestinien, sera prochainement visible dans des festivals de cinéma. Il sortira en salles dès lors que les difficultés de financement rencontrées par ce long-métrage indépendant auront été surmontées.</p>
<p>Une version quasi-définitive du film sera projetée en avant-première à Auch, le vendredi 3 octobre 2025 (au festival Indépendance(s) et création), puis à Montpellier, au CINEMED (festival du cinéma méditerranéen) le dimanche19 octobre 2025.</p>
<p>Comme on le découvrira dans ce documentaire, Georges Abdallah a quasiment tout subi en matière d'opérations de désinformation, de manipulations policières et de pressions exercées sur la justice française pour éviter qu'il soit libéré. Un seul exemple : en mars 2007, le directeur de la DST (Direction de la Surveillance du Territoire) Pierre de Bousquet de Florian a signé une note présentant Georges Abdallah comme un « ancien chrétien marxiste » s'étant « converti à l'islam » au contact d' « éléments radicaux maghrébins » qu'il côtoyait en détention. Sous-entendu : le militant communiste est désormais islamiste et non plus marxiste. Il s'agissait en réalité d'une manipulation policière. Pour Yves Bonnet, l'un des prédécesseurs de Bousquet de Florian à la tête de la DST, l'énonciation de cette contre-vérité devant les juges de l'application des peines constituerait une « forfaiture ». La journaliste Clara Menais a tenté d'interroger Pierre de Bousquet de Florian à ce sujet (qui, pour la petite histoire, a fini sa carrière comme... directeur de cabinet du ministre de l'Intérieur Gérald Darmanin). Le responsable policier s'est retranché derrière le « secret défense » pour éviter de répondre aux questions de la journaliste.</p>
<p>Cette opération de désinformation de la DST a très probablement joué un rôle dans la non-libération de Georges Abdallah en 2007. Quelques mois plus tard, lors de l'audience d'examen de la demande de libération conditionnelle, l'avocat des Etats-Unis Georges Kiejman s'est, en effet, appuyé sur la note de la DST pour convaincre les juges que le risque subsistait qu'Abdallah « rejoue un rôle violent » une fois sorti de prison, alors que son pays – le Liban – n'était plus occupé par l'armée israëlienne avec l'appui des Etats-Unis à ce moment-là.</p>
]]></content:encoded>
            <dc:creator>à la Une de l'abonnement CinéMutins</dc:creator>
            <enclosure length="2268102" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/f661a65a-d4ff-4276-ace0-71d8f6c80bc7?videoFileIds=5508158"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/wqB7AfHTfpsX2mPqNKUC3T"/>
            <media:player url="https://peertube2.cpy.re/w/wqB7AfHTfpsX2mPqNKUC3T"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6db0cb7e-cb4b-4b03-a970-0208b940456c-406-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8770f6dc-d36d-46fd-9606-fd68542176b2-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4e97712e-dc1c-4d25-9c41-9786b8705979-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="406" fileSize="2268102" url="https://static.indymotion.fr/streaming-playlists/hls/f661a65a-d4ff-4276-ace0-71d8f6c80bc7/1ca99d61-5a6c-4f6d-aad4-943fd321fa53-406-fragmented.mp4" framerate="25" duration="41" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="1361927" url="https://static.indymotion.fr/streaming-playlists/hls/f661a65a-d4ff-4276-ace0-71d8f6c80bc7/e8b4d4b3-ba9b-4ef0-8e66-f8ed61b7eb25-240-fragmented.mp4" framerate="25" duration="41" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="659739" url="https://static.indymotion.fr/streaming-playlists/hls/f661a65a-d4ff-4276-ace0-71d8f6c80bc7/3f6f95a6-6e9a-44ef-b553-b7e88b42d953-0-fragmented.mp4" framerate="0" duration="41" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/fc4dd5ae-1bfb-4846-afc1-5faf477c9a71.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/6511d182-b633-436b-a625-423f7ba092ab.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Dans les rushes (inédit) du nouveau film de Pierre Carles</media:title>
            <media:description type="plain">https://www.cinemutins.com/films/1803-dans-les-rushes-inedit-du-nouveau-film-de-pierre-carles Quand Pierre de Bousquet de Florian et la DST mentent à propos de Georges Abdallah. En exclusivité pour les abonnés de CinéMutins Un extrait des ru...</media:description>
        </item>
        <item>
            <title><![CDATA[À demain mon amour de Basile Carré-Agostini]]></title>
            <link>https://peertube2.cpy.re/w/sb1J1kW47L3zJe15cFD2QH</link>
            <guid>https://peertube2.cpy.re/w/sb1J1kW47L3zJe15cFD2QH</guid>
            <pubDate>Sun, 05 Oct 2025 21:34:11 GMT</pubDate>
            <description><![CDATA[https://www.cinemutins.com/films/1114-a-demain-mon-amour Synopsis Monique et Michel Pinçon-Charlot, sociologues de la grande bourgeoisie, passent beaucoup de temps dans leur pavillon fleuri de banlieue parisienne. Ils s’aiment depuis plus de ...]]></description>
            <content:encoded><![CDATA[<p><a href="https://www.cinemutins.com/films/1114-a-demain-mon-amour" target="_blank" rel="noopener noreferrer">https://www.cinemutins.com/films/1114-a-demain-mon-amour</a></p>
<p>Synopsis<br />
Monique et Michel Pinçon-Charlot, sociologues de la grande bourgeoisie, passent beaucoup de temps dans leur pavillon fleuri de banlieue parisienne. Ils s’aiment depuis plus de 50 ans, ont une retraite confortable dont ils pourraient profiter paisiblement. Mais, comme ils sont un peu dingues et sensibles à l’injustice, ils ont décidé d’accélérer leur combat contre le système capitaliste planétaire.</p>
]]></content:encoded>
            <dc:creator>à la Une de l'abonnement CinéMutins</dc:creator>
            <enclosure length="13789158" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/d3f37d3b-75a2-455f-a5a6-631828226945?videoFileIds=5508154"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/sb1J1kW47L3zJe15cFD2QH"/>
            <media:player url="https://peertube2.cpy.re/w/sb1J1kW47L3zJe15cFD2QH"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8a37f328-f6b1-4bb9-bc47-1d0f1d10ead9-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f2488782-c4e4-4316-937c-2f29f72ab237-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e3ac6518-1702-4d95-a56d-9de8afafdea6-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/82661530-a259-4858-86ee-b73ba19a1786-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="13789158" url="https://static.indymotion.fr/streaming-playlists/hls/d3f37d3b-75a2-455f-a5a6-631828226945/1163b940-6f9a-407f-ac84-a9b20ed9d0bb-720-fragmented.mp4" framerate="25" duration="100" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="8891525" url="https://static.indymotion.fr/streaming-playlists/hls/d3f37d3b-75a2-455f-a5a6-631828226945/0dfc9623-dd14-47c7-9620-57941bd403a9-480-fragmented.mp4" framerate="25" duration="100" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="4280664" url="https://static.indymotion.fr/streaming-playlists/hls/d3f37d3b-75a2-455f-a5a6-631828226945/0ee3c42c-ef8f-45c5-b26f-99969866d9e4-240-fragmented.mp4" framerate="25" duration="100" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1546945" url="https://static.indymotion.fr/streaming-playlists/hls/d3f37d3b-75a2-455f-a5a6-631828226945/4f187044-dec4-48a7-a124-02d0fd9bc6ef-0-fragmented.mp4" framerate="0" duration="100" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/6837f477-33b0-4075-add7-38be795f9711.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/4dfafe43-b6bc-4bab-b2b6-e64c081e7986.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">À demain mon amour de Basile Carré-Agostini</media:title>
            <media:description type="plain">https://www.cinemutins.com/films/1114-a-demain-mon-amour Synopsis Monique et Michel Pinçon-Charlot, sociologues de la grande bourgeoisie, passent beaucoup de temps dans leur pavillon fleuri de banlieue parisienne. Ils s’aiment depuis plus de ...</media:description>
        </item>
        <item>
            <title><![CDATA[Reprise en main de Gilles Perret]]></title>
            <link>https://peertube2.cpy.re/w/hAyGbCehhLYi2eohSmvfpY</link>
            <guid>https://peertube2.cpy.re/w/hAyGbCehhLYi2eohSmvfpY</guid>
            <pubDate>Sun, 05 Oct 2025 21:32:59 GMT</pubDate>
            <description><![CDATA[https://www.cinemutins.com/films/1221-reprise-en-main Synopsis Comme son père avant lui, Cédric travaille dans une entreprise de mécanique de précision en Haute-Savoie. L'usine doit être de nouveau cédée à un fonds d’investissement. Epuisés d’...]]></description>
            <content:encoded><![CDATA[<p><a href="https://www.cinemutins.com/films/1221-reprise-en-main" target="_blank" rel="noopener noreferrer">https://www.cinemutins.com/films/1221-reprise-en-main</a></p>
<p>Synopsis<br />
Comme son père avant lui, Cédric travaille dans une entreprise de mécanique de précision en Haute-Savoie. L'usine doit être de nouveau cédée à un fonds d’investissement. Epuisés d’avoir à dépendre de spéculateurs cyniques, Cédric et ses amis d'enfance tentent l'impossible : racheter l’usine en se faisant passer pour des financiers !</p>
]]></content:encoded>
            <dc:creator>à la Une de l'abonnement CinéMutins</dc:creator>
            <enclosure length="14753814" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/8665a786-e3c8-451f-8f11-cbca6d20a86e?videoFileIds=5508150"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/hAyGbCehhLYi2eohSmvfpY"/>
            <media:player url="https://peertube2.cpy.re/w/hAyGbCehhLYi2eohSmvfpY"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/954a8c35-6203-4237-99e2-185e20a98853-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/306f45e8-3d6d-4d75-9b5f-c1efc0777711-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/84eb3d9f-1b0c-4c88-89c0-15b511886bd2-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/503d16aa-a190-4691-ad57-9c3d5b512167-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="14753814" url="https://static.indymotion.fr/streaming-playlists/hls/8665a786-e3c8-451f-8f11-cbca6d20a86e/8d9718ae-64a0-4425-bc52-4dc50ab238f4-720-fragmented.mp4" framerate="25" duration="93" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="9014025" url="https://static.indymotion.fr/streaming-playlists/hls/8665a786-e3c8-451f-8f11-cbca6d20a86e/ab6df337-4144-4269-b203-6d42e5afdc8d-480-fragmented.mp4" framerate="25" duration="93" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="4235812" url="https://static.indymotion.fr/streaming-playlists/hls/8665a786-e3c8-451f-8f11-cbca6d20a86e/318d07a4-de60-4191-b11a-f6468e6e30da-240-fragmented.mp4" framerate="25" duration="93" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1481721" url="https://static.indymotion.fr/streaming-playlists/hls/8665a786-e3c8-451f-8f11-cbca6d20a86e/e1ade563-50dd-4118-b3e5-446149782e63-0-fragmented.mp4" framerate="0" duration="93" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/79a29f04-713f-463b-91cb-ba52152c70c2.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/faf4834b-6b22-4c83-91b1-bcdb1fbd3cd4.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Reprise en main de Gilles Perret</media:title>
            <media:description type="plain">https://www.cinemutins.com/films/1221-reprise-en-main Synopsis Comme son père avant lui, Cédric travaille dans une entreprise de mécanique de précision en Haute-Savoie. L'usine doit être de nouveau cédée à un fonds d’investissement. Epuisés d’...</media:description>
        </item>
        <item>
            <title><![CDATA[Un pays qui se tient sage en VOD, un film de David Dufresne]]></title>
            <link>https://peertube2.cpy.re/w/2JDMQGdr1DSwXkY6UKfxQX</link>
            <guid>https://peertube2.cpy.re/w/2JDMQGdr1DSwXkY6UKfxQX</guid>
            <pubDate>Sun, 05 Oct 2025 21:31:00 GMT</pubDate>
            <description><![CDATA[https://www.cinemutins.com/films/703-un-pays-qui-se-tient-sage Synopsis Alors que s’accroissent la colère et le mécontentement devant les injustices sociales, de nombreuses manifestations citoyennes sont l’objet d’une répression de plus en plu...]]></description>
            <content:encoded><![CDATA[<p><a href="https://www.cinemutins.com/films/703-un-pays-qui-se-tient-sage" target="_blank" rel="noopener noreferrer">https://www.cinemutins.com/films/703-un-pays-qui-se-tient-sage</a></p>
<p>Synopsis<br />
Alors que s’accroissent la colère et le mécontentement devant les injustices sociales, de nombreuses manifestations citoyennes sont l’objet d’une répression de plus en plus brutale. UN PAYS QUI SE TIENT SAGE invite des citoyens à approfondir, interroger et confronter leurs points de vue sur l’ordre social et la légitimité de l’usage de la violence par l’État.</p>
<p>Grand Prix et Prix du Jury de la presse internationale à My French Film Festival 2022</p>
]]></content:encoded>
            <dc:creator>à la Une de l'abonnement CinéMutins</dc:creator>
            <enclosure length="24070818" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/0e0daa87-025d-4510-a41b-bf62aa0a1313?videoFileIds=5508146"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/2JDMQGdr1DSwXkY6UKfxQX"/>
            <media:player url="https://peertube2.cpy.re/w/2JDMQGdr1DSwXkY6UKfxQX"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/acaf5815-fcb3-44ba-a15d-da9829f9548b-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/02e9f8c0-64e0-4325-ac12-43c671a6f8ba-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2ff87026-d16b-4fb4-931e-86bbda62fc5d-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3067590b-f504-40e0-9c83-6c1a25ba2f83-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="24070818" url="https://static.indymotion.fr/streaming-playlists/hls/0e0daa87-025d-4510-a41b-bf62aa0a1313/ba5c8553-a18b-4d8f-8202-f88dfaa976cb-720-fragmented.mp4" framerate="25" duration="132" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="15048528" url="https://static.indymotion.fr/streaming-playlists/hls/0e0daa87-025d-4510-a41b-bf62aa0a1313/f0b47e6c-4c6c-4318-acd7-db860f0ec57c-480-fragmented.mp4" framerate="25" duration="132" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="6544694" url="https://static.indymotion.fr/streaming-playlists/hls/0e0daa87-025d-4510-a41b-bf62aa0a1313/84bb6503-75c9-4830-8406-9d633e65fe6e-240-fragmented.mp4" framerate="25" duration="132" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1893337" url="https://static.indymotion.fr/streaming-playlists/hls/0e0daa87-025d-4510-a41b-bf62aa0a1313/8ee9f4ed-c00f-4591-a6b4-7a43739bdecd-0-fragmented.mp4" framerate="0" duration="132" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/15dd2c43-e4ab-4936-9f2e-555e1a26b592.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/7265c07d-0056-48fb-b2f3-da82410172ff.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Un pays qui se tient sage en VOD, un film de David Dufresne</media:title>
            <media:description type="plain">https://www.cinemutins.com/films/703-un-pays-qui-se-tient-sage Synopsis Alors que s’accroissent la colère et le mécontentement devant les injustices sociales, de nombreuses manifestations citoyennes sont l’objet d’une répression de plus en plu...</media:description>
        </item>
    </channel>
</rss>

Videos of subscriptions feeds

path Parameters
format
required
string
Enum: "xml" "rss" "rss2" "atom" "atom1" "json" "json1"

format expected (we focus on making rss the most feature-rich ; it serves Media RSS)

query Parameters
accountId
required
string

limit listing to a specific account

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

sort
string
Example: sort=-createdAt

Sort column

token
required
string

private token allowing access

Responses

Response samples

Content type
No sample

Videos podcast feed

query Parameters
videoChannelId
required
string

Limit listing to a specific video channel

Responses

Register

As a visitor, you can use this API to open an account (if registrations are open on that PeerTube instance). As an admin, you should use the dedicated User creation API instead.

Resend user verification link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Resend verification link to registration request email

Request Body schema: application/json
email
required
string

Registration email

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Verify a user

Following a user registration, the new user will receive an email asking to click a link containing a secret. This endpoint can also be used to verify a new email set in the user account.

path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
verificationString
required
string <url>
isPendingEmail
boolean

Responses

Request samples

Content type
application/json
{
  • "verificationString": "string",
  • "isPendingEmail": true
}

Verify a registration email

Following a user registration request, the user will receive an email asking to click a link containing a secret.

path Parameters
registrationId
required
integer (id) >= 1
Example: 42

Registration ID

Request Body schema: application/json
verificationString
required
string <url>

Responses

Request samples

Content type
application/json
{
  • "verificationString": "string"
}

Register a user

Signup has to be enabled and signup approval is not required

Request Body schema: application/json
required
email
required
string <email>

email of the user, used for login or service communications

password
required
string <password> (password) [ 6 .. 255 ] characters
username
required
string [ 1 .. 50 ] characters /^[a-z0-9._]+$/

immutable name of the user, used to find or mention its actor

object

channel base information used to create the first channel of the user

displayName
string [ 1 .. 120 ] characters

editable name of the user, displayed in its representations

Responses

Request samples

Content type
application/json
{
  • "username": "chocobozzz",
  • "password": "pa$$word",
  • "email": "user@example.com",
  • "displayName": "string",
  • "channel": {
    }
}

Request registration

Signup has to be enabled and require approval on the instance

Request Body schema: application/json
email
required
string <email>

email of the user, used for login or service communications

password
required
string <password> (password) [ 6 .. 255 ] characters
registrationReason
required
string

reason for the user to register on the instance

username
required
string [ 1 .. 50 ] characters /^[a-z0-9._]+$/

immutable name of the user, used to find or mention its actor

object

channel base information used to create the first channel of the user

displayName
string [ 1 .. 120 ] characters

editable name of the user, displayed in its representations

Responses

Request samples

Content type
application/json
{
  • "username": "chocobozzz",
  • "password": "pa$$word",
  • "email": "user@example.com",
  • "displayName": "string",
  • "channel": {
    },
  • "registrationReason": "string"
}

Response samples

Content type
application/json
{
  • "id": 42,
  • "state": {
    },
  • "registrationReason": "string",
  • "moderationResponse": "string",
  • "username": "string",
  • "email": "user@example.com",
  • "emailVerified": true,
  • "accountDisplayName": "string",
  • "channelHandle": "string",
  • "channelDisplayName": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "user": {
    }
}

Accept registration

Authorizations:
OAuth2
path Parameters
registrationId
required
integer (id) >= 1
Example: 42

Registration ID

Request Body schema: application/json
moderationResponse
required
string

Moderation response to send to the user

preventEmailDelivery
boolean

Set it to true if you don't want PeerTube to send an email to the user

Responses

Request samples

Content type
application/json
{
  • "moderationResponse": "string",
  • "preventEmailDelivery": true
}

Reject registration

Authorizations:
OAuth2
path Parameters
registrationId
required
integer (id) >= 1
Example: 42

Registration ID

Request Body schema: application/json
moderationResponse
required
string

Moderation response to send to the user

preventEmailDelivery
boolean

Set it to true if you don't want PeerTube to send an email to the user

Responses

Request samples

Content type
application/json
{
  • "moderationResponse": "string",
  • "preventEmailDelivery": true
}

Delete registration

Delete the registration entry. It will not remove the user associated with this registration (if any)

Authorizations:
OAuth2
path Parameters
registrationId
required
integer (id) >= 1
Example: 42

Registration ID

Responses

List registrations

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string
sort
string
Enum: "-createdAt" "createdAt" "state" "-state"
start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Login/Logout

Sessions deal with access tokens over time. Only one session token can currently be used at a time.

Login prerequisite

You need to retrieve a client id and secret before logging in.

Responses

Request samples

API="https://peertube2.cpy.re/api/v1"

## AUTH
curl -s "$API/oauth-clients/local"

Response samples

Content type
application/json
{
  • "client_id": "v1ikx5hnfop4mdpnci8nsqh93c45rldf",
  • "client_secret": "AjWiOapPltI6EnsWQwlFarRtLh4u8tDt"
}

Login

With your client id and secret, you can retrieve an access and refresh tokens.

header Parameters
x-peertube-otp
string

If the user enabled two factor authentication, you need to provide the OTP code in this header

Request Body schema: application/x-www-form-urlencoded
client_id
required
string = 32 characters /^[a-z0-9]$/
client_secret
required
string = 32 characters /^[a-zA-Z0-9]$/
grant_type
required
string
username
required
string [ 1 .. 50 ] characters /^[a-z0-9._]+$/

immutable name of the user, used to find or mention its actor

externalAuthToken
string

If you want to authenticate using an external authentication token you got from an auth plugin (like peertube-plugin-auth-openid-connect for example) instead of a password or a refresh token, provide it here.

password
string <password> (password) [ 6 .. 255 ] characters

Responses

Request samples

## DEPENDENCIES: jq
API="https://peertube2.cpy.re/api/v1"
USERNAME="<your_username>"
PASSWORD="<your_password>"

## AUTH
client_id=$(curl -s "$API/oauth-clients/local" | jq -r ".client_id")
client_secret=$(curl -s "$API/oauth-clients/local" | jq -r ".client_secret")
curl -s "$API/users/token" \
  --data client_id="$client_id" \
  --data client_secret="$client_secret" \
  --data grant_type=password \
  --data username="$USERNAME" \
  --data-urlencode password="$PASSWORD" \
  | jq -r ".access_token"

Response samples

Content type
application/json
{
  • "token_type": "Bearer",
  • "access_token": "90286a0bdf0f7315d9d3fe8dabf9e1d2be9c97d0",
  • "refresh_token": "2e0d675df9fc96d2e4ec8a3ebbbf45eca9137bb7",
  • "expires_in": 14399,
  • "refresh_token_expires_in": 1209600
}

Logout

Revokes your access token and its associated refresh token, destroying your current session.

Authorizations:
OAuth2

Responses

List token sessions

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List token sessions

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

tokenSessionId
required
integer (id) >= 1
Example: 42

Token session Id

Responses

Accounts

Accounts encompass remote accounts discovered across the federation, and correspond to the main Actor, along with video channels a user can create, which are also Actors. When a comment is posted, it is done with your Account's Actor.

Get an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "url": "string",
  • "name": "chocobozzz",
  • "avatars": [
    ],
  • "host": "example.com",
  • "hostRedundancyAllowed": true,
  • "followingCount": 0,
  • "followersCount": 0,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "userId": 42,
  • "displayName": "string",
  • "description": "string"
}

List videos of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Request samples

fetch('https://peertube2.cpy.re/api/v1/accounts/{name}/videos')
.then(function(response) {
  return response.json()
}).then(function(data) {
  console.log(data)
})

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List followers of an account

Authorizations:
OAuth2
path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Value: "createdAt"

Sort followers by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List accounts

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List playlists of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

withStats
boolean

include daily view statistics for the last 30 days and total views (only if authentified as the account user)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List the synchronizations of video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List ratings of an account

Authorizations:
OAuth2
path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

rating
string
Enum: "like" "dislike"

Optionally filter which ratings to retrieve

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Users

Using some features of PeerTube require authentication, for which User provide different levels of permission as well as associated user information. Each user has a corresponding local Account for federation.

Create a user

Authorizations:
OAuth2
Request Body schema: application/json
required

If the smtp server is configured, you can leave the password empty and an email will be sent asking the user to set it first.

email
required
string <email>

The user email

password
required
string <password> (password) [ 6 .. 255 ] characters
role
required
integer (UserRole)
Enum: 0 1 2

The user role (Admin = 0, Moderator = 1, User = 2)

username
required
string (username) [ 1 .. 50 ] characters /^[a-z0-9._]+$/

immutable name of the user, used to find or mention its actor

adminFlags
integer (UserAdminFlags)
Enum: 0 1

Admin flags for the user (None = 0, Bypass video blocklist = 1)

channelName
string (usernameChannel) [ 1 .. 50 ] characters /^[a-zA-Z0-9\\-_.:]+$/

immutable name of the channel, used to interact with its actor

videoQuota
integer

The user video quota in bytes

videoQuotaDaily
integer

The user daily video quota in bytes

Responses

Request samples

Content type
application/json
{
  • "username": "chocobozzz",
  • "password": "pa$$word",
  • "email": "user@example.com",
  • "videoQuota": -1,
  • "videoQuotaDaily": -1,
  • "channelName": "framasoft_videos",
  • "role": 2,
  • "adminFlags": 1
}

Response samples

Content type
application/json
{
  • "user": {
    }
}

List users

Authorizations:
OAuth2
query Parameters
blocked
boolean

Filter results down to (un)banned users

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search that will match with user usernames or emails

sort
string
Enum: "-id" "-username" "-createdAt"

Sort users by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Delete a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Responses

Get a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

query Parameters
withStats
boolean

include statistics about the user (only available as a moderator/admin)

Responses

Response samples

Content type
application/json
Example
{
  • "account": {
    },
  • "autoPlayNextVideo": true,
  • "autoPlayNextVideoPlaylist": true,
  • "autoPlayVideo": true,
  • "blocked": true,
  • "blockedReason": "string",
  • "createdAt": "string",
  • "email": "user@example.com",
  • "emailVerified": true,
  • "id": 42,
  • "pluginAuth": "string",
  • "lastLoginDate": "2019-08-24T14:15:22Z",
  • "noInstanceConfigWarningModal": true,
  • "noAccountSetupWarningModal": true,
  • "noWelcomeModal": true,
  • "nsfwPolicy": "display",
  • "nsfwFlagsDisplayed": 0,
  • "nsfwFlagsHidden": 0,
  • "nsfwFlagsWarned": 0,
  • "nsfwFlagsBlurred": 0,
  • "role": {
    },
  • "theme": "string",
  • "username": "chocobozzz",
  • "videoChannels": [
    ],
  • "videoQuota": -1,
  • "videoQuotaDaily": -1,
  • "p2pEnabled": true
}

Update a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
required
adminFlags
integer (UserAdminFlags)
Enum: 0 1

Admin flags for the user (None = 0, Bypass video blocklist = 1)

email
string <email>

The updated email of the user

emailVerified
boolean

Set the email as verified

password
string <password> (password) [ 6 .. 255 ] characters
pluginAuth
string or null

The auth plugin to use to authenticate the user

role
integer (UserRole)
Enum: 0 1 2

The user role (Admin = 0, Moderator = 1, User = 2)

videoQuota
integer

The updated video quota of the user in bytes

videoQuotaDaily
integer

The updated daily video quota of the user in bytes

Responses

Request samples

Content type
application/json
{
  • "email": "user@example.com",
  • "emailVerified": true,
  • "videoQuota": 0,
  • "videoQuotaDaily": 0,
  • "pluginAuth": "peertube-plugin-auth-saml2",
  • "role": 2,
  • "adminFlags": 1,
  • "password": "pa$$word"
}

Resend user verification link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Verify a user

Following a user registration, the new user will receive an email asking to click a link containing a secret. This endpoint can also be used to verify a new email set in the user account.

path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
verificationString
required
string <url>
isPendingEmail
boolean

Responses

Request samples

Content type
application/json
{
  • "verificationString": "string",
  • "isPendingEmail": true
}

Ask to reset password

An email containing a reset password link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Reset password

path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
password
required
string
verificationString
required
string <url>

Responses

Request samples

Content type
application/json
{
  • "verificationString": "string",
  • "password": "string"
}

Request two factor auth

Request two factor authentication for a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
currentPassword
string

Password of the currently authenticated user

Responses

Request samples

Content type
application/json
{
  • "currentPassword": "string"
}

Response samples

Content type
application/json
[
  • {
    }
]

Confirm two factor auth

Confirm a two factor authentication request

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
otpToken
required
string

OTP token generated by the app

requestToken
required
string

Token to identify the two factor request

Responses

Request samples

Content type
application/json
{
  • "requestToken": "string",
  • "otpToken": "string"
}

Disable two factor auth

Disable two factor authentication of a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
currentPassword
string

Password of the currently authenticated user

Responses

Request samples

Content type
application/json
{
  • "currentPassword": "string"
}

User Exports

To create an archive of user data.

Request user export

Request an archive of user data. An email is sent when the archive is ready.

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

Request Body schema: application/json
withVideoFiles
boolean

Whether to include video files in the archive

Responses

Request samples

Content type
application/json
{
  • "withVideoFiles": true
}

Response samples

Content type
application/json
{
  • "export": {
    }
}

List user exports

PeerTube >= 6.1

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "state": {
    },
  • "size": 0,
  • "privateDownloadUrl": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "expiresOn": "2019-08-24T14:15:22Z"
}

Delete a user export

PeerTube >= 6.1

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

userId
required
integer (id) >= 1
Example: 42

User id

Responses

User Imports

To import an archive of user data.

Initialize the resumable user import

PeerTube >= 6.1 Uses a resumable protocol to initialize the import of the archive

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
filename
string <filename>

Archive filename including extension

Responses

Request samples

Content type
application/json
{
  • "filename": "user-export-6-2024-02-09T10_12_11.682Z"
}

Send chunk for the resumable user import

PeerTube >= 6.1 Uses a resumable protocol to continue, pause or resume the import of the archive

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Cancel the resumable user import

PeerTube >= 6.1 Uses a resumable protocol to cancel the resumable user import

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

Get latest user import

PeerTube >= 6.1

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "state": {
    },
  • "createdAt": "2019-08-24T14:15:22Z"
}

My User

Operations related to your own User, when logged-in.

Get my user information

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Update my user information

Authorizations:
OAuth2
Request Body schema: application/json
required
autoPlayNextVideo
boolean

new preference regarding playing following videos automatically

autoPlayNextVideoPlaylist
boolean

new preference regarding playing following playlist videos automatically

autoPlayVideo
boolean

new preference regarding playing videos automatically

currentPassword
string <password> (password) [ 6 .. 255 ] characters
displayName
string [ 3 .. 120 ] characters

new name of the user in its representations

email
string <email>

new email used for login and service communications

language
string

default language for this user

noAccountSetupWarningModal
boolean
noInstanceConfigWarningModal
boolean
noWelcomeModal
boolean
nsfwFlagsBlurred
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsDisplayed
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsHidden
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsWarned
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwPolicy
string
Enum: "true" "false" "both"

new NSFW display policy

p2pEnabled
boolean

whether to enable P2P in the player or not

password
string <password> (password) [ 6 .. 255 ] characters
theme
string
videoLanguages
Array of strings

list of languages to filter videos down to

videosHistoryEnabled
boolean

whether to keep track of watched history or not

Responses

Request samples

Content type
application/json
{
  • "password": "pa$$word",
  • "currentPassword": "pa$$word",
  • "email": "user@example.com",
  • "displayName": "string",
  • "nsfwPolicy": "true",
  • "nsfwFlagsDisplayed": 0,
  • "nsfwFlagsHidden": 0,
  • "nsfwFlagsWarned": 0,
  • "nsfwFlagsBlurred": 0,
  • "p2pEnabled": true,
  • "autoPlayVideo": true,
  • "autoPlayNextVideo": true,
  • "autoPlayNextVideoPlaylist": true,
  • "videosHistoryEnabled": true,
  • "videoLanguages": [
    ],
  • "language": "string",
  • "theme": "string",
  • "noInstanceConfigWarningModal": true,
  • "noAccountSetupWarningModal": true,
  • "noWelcomeModal": true
}

Get video imports of my user

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Search in video names

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

targetUrl
string

Filter on import target URL

videoChannelSyncId
number

Filter on imports created by a specific channel synchronization

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Get my user used quota

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "videoQuotaUsed": 16810141515,
  • "videoQuotaUsedDaily": 1681014151
}

Get rate of my user for a video

Authorizations:
OAuth2
path Parameters
videoId
required
integer >= 1
Example: 42

The video id

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "rating": "like"
}

List videos of my user

Authorizations:
OAuth2
query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

string or Array of strings

PeerTube >= 7.2 Filter on videos that are published by a channel with one of these names

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Update my user avatar

Authorizations:
OAuth2
Request Body schema: multipart/form-data
avatarfile
string <binary>

The file to upload

Responses

Response samples

Content type
application/json
{
  • "avatars": [
    ]
}

Delete my avatar

Authorizations:
OAuth2

Responses

List my abuses

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

id
integer

only list the report with this id

sort
string
Enum: "-id" "-createdAt" "-state"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

My Subscriptions

Operations related to your subscriptions to video channels, their new videos, and how to keep up to date with their latest publications!

List my user subscriptions

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Enum: "-id" "-createdAt" "-channelUpdatedAt"
start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add subscription to my user

Authorizations:
OAuth2
Request Body schema: application/json
uri
required
string <uri>

uri of the video channels to subscribe to

Responses

Request samples

Content type
application/json
{
  • "uri": "008a0e54-375d-49d0-8379-143202e24152@video.lqdn.fr"
}

Get if subscriptions exist for my user

Authorizations:
OAuth2
query Parameters
uris
required
Array of strings <uri> [ items <uri > ]

list of uris to check if each is part of the user subscriptions

Responses

Response samples

Content type
application/json
{ }

List videos of subscriptions of my user

Authorizations:
OAuth2
query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Get subscription of my user

Authorizations:
OAuth2
path Parameters
subscriptionHandle
required
string
Example: my_username | my_username@example.com

The subscription handle

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "url": "string",
  • "name": "chocobozzz",
  • "avatars": [
    ],
  • "host": "example.com",
  • "hostRedundancyAllowed": true,
  • "followingCount": 0,
  • "followersCount": 0,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "displayName": "Videos of Framasoft",
  • "description": "Videos made with <3 by Framasoft",
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "isLocal": true,
  • "banners": [
    ],
  • "ownerAccount": {
    }
}

Delete subscription of my user

Authorizations:
OAuth2
path Parameters
subscriptionHandle
required
string
Example: my_username | my_username@example.com

The subscription handle

Responses

My Notifications

Notifications following new videos, follows or reports. They allow you to keep track of the interactions and overall important information that concerns you. You MAY set per-notification type delivery preference, to receive the info either by mail, by in-browser notification or both.

List my notifications

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

typeOneOf
Array of integers (NotificationType)
Items Enum: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

only list notifications of these types

unread
boolean

only list unread notifications

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Mark notifications as read by their id

Authorizations:
OAuth2
Request Body schema: application/json
ids
required
Array of integers

ids of the notifications to mark as read

Responses

Request samples

Content type
application/json
{
  • "ids": [
    ]
}

Mark all my notification as read

Authorizations:
OAuth2

Responses

Update my notification settings

Authorizations:
OAuth2
Request Body schema: application/json
abuseAsModerator
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
abuseNewMessage
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
abuseStateChange
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
autoInstanceFollowing
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
blacklistOnMyVideo
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
commentMention
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
myVideoImportFinished
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
myVideoPublished
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
myVideoStudioEditionFinished
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
myVideoTranscriptionGenerated
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newCommentOnMyVideo
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newFollow
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newInstanceFollower
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newPeerTubeVersion
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newPluginVersion
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newUserRegistration
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newVideoFromSubscription
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
videoAutoBlacklistAsModerator
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL

Responses

Request samples

Content type
application/json
{
  • "abuseAsModerator": 0,
  • "videoAutoBlacklistAsModerator": 0,
  • "newUserRegistration": 0,
  • "newVideoFromSubscription": 0,
  • "blacklistOnMyVideo": 0,
  • "myVideoPublished": 0,
  • "myVideoImportFinished": 0,
  • "commentMention": 0,
  • "newCommentOnMyVideo": 0,
  • "newFollow": 0,
  • "newInstanceFollower": 0,
  • "autoInstanceFollowing": 0,
  • "abuseStateChange": 0,
  • "abuseNewMessage": 0,
  • "newPeerTubeVersion": 0,
  • "newPluginVersion": 0,
  • "myVideoStudioEditionFinished": 0,
  • "myVideoTranscriptionGenerated": 0
}

My History

Operations related to your watch history.

List watched videos history

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Delete history element

Authorizations:
OAuth2
path Parameters
videoId
required
integer >= 1
Example: 42

object id for the video

Responses

Clear video history

Authorizations:
OAuth2
Request Body schema: multipart/form-data
beforeDate
string <date-time>

history before this date will be deleted

Responses

Video

Operations dealing with listing, uploading, fetching or modifying videos.

List videos of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Request samples

fetch('https://peertube2.cpy.re/api/v1/accounts/{name}/videos')
.then(function(response) {
  return response.json()
}).then(function(data) {
  console.log(data)
})

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Request video token

Request special tokens that expire quickly to use them in some context (like accessing private static files)

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "files": {
    }
}

Create a studio task

Create a task to edit a video (cut, add intro/outro etc)

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: multipart/form-data
required
Array
Any of
name
string
Value: "cut"
object

Responses

List videos

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List available video categories

Responses

Response samples

Content type
application/json
{
  • "1": "Music",
  • "2": "Films",
  • "3": "Vehicles",
  • "4": "Art",
  • "5": "Sports",
  • "6": "Travels",
  • "7": "Gaming",
  • "8": "People",
  • "9": "Comedy",
  • "10": "Entertainment",
  • "11": "News & Politics",
  • "12": "How To",
  • "13": "Education",
  • "14": "Activism",
  • "15": "Science & Technology",
  • "16": "Animals",
  • "17": "Kids",
  • "18": "Food"
}

List available video licences

Responses

Response samples

Content type
application/json
{
  • "1": "Attribution",
  • "2": "Attribution - Share Alike",
  • "3": "Attribution - No Derivatives",
  • "4": "Attribution - Non Commercial",
  • "5": "Attribution - Non Commercial - Share Alike",
  • "6": "Attribution - Non Commercial - No Derivatives",
  • "7": "Public Domain Dedication",
  • "8": "Free of known copyright restrictions",
  • "9": "Copyrighted - All Rights Reserved"
}

List available video languages

Responses

Response samples

Content type
application/json
{
  • "aa": "Afar",
  • "ab": "Abkhazian",
  • "af": "Afrikaans",
  • "ak": "Akan",
  • "am": "Amharic",
  • "ar": "Arabic",
  • "an": "Aragonese",
  • "ase": "American Sign Language",
  • "as": "Assamese",
  • "asq": "Austrian Sign Language",
  • "av": "Avaric",
  • "avk": "Kotava",
  • "ay": "Aymara",
  • "az": "Azerbaijani",
  • "ba": "Bashkir",
  • "bm": "Bambara",
  • "be": "Belarusian",
  • "bn": "Bengali",
  • "bfi": "British Sign Language",
  • "bi": "Bislama",
  • "bo": "Tibetan",
  • "bs": "Bosnian",
  • "br": "Breton",
  • "bg": "Bulgarian",
  • "bzs": "Brazilian Sign Language",
  • "ca": "Catalan",
  • "cs": "Czech",
  • "ch": "Chamorro",
  • "ce": "Chechen",
  • "cv": "Chuvash",
  • "kw": "Cornish",
  • "co": "Corsican",
  • "cr": "Cree",
  • "cse": "Czech Sign Language",
  • "csl": "Chinese Sign Language",
  • "cy": "Welsh",
  • "da": "Danish",
  • "de": "German",
  • "dv": "Dhivehi",
  • "dsl": "Danish Sign Language",
  • "dz": "Dzongkha",
  • "el": "Greek",
  • "en": "English",
  • "eo": "Esperanto",
  • "et": "Estonian",
  • "eu": "Basque",
  • "ee": "Ewe",
  • "fo": "Faroese",
  • "fa": "Persian",
  • "fj": "Fijian",
  • "fi": "Finnish",
  • "fr": "French",
  • "fy": "Western Frisian",
  • "fse": "Finnish Sign Language",
  • "fsl": "French Sign Language",
  • "ff": "Fulah",
  • "gcf": "Guadeloupean Creole French",
  • "gd": "Scottish Gaelic",
  • "ga": "Irish",
  • "gl": "Galician",
  • "gv": "Manx",
  • "gn": "Guarani",
  • "gsg": "German Sign Language",
  • "gu": "Gujarati",
  • "ht": "Haitian",
  • "ha": "Hausa",
  • "sh": "Serbo-Croatian",
  • "he": "Hebrew",
  • "hz": "Herero",
  • "hi": "Hindi",
  • "ho": "Hiri Motu",
  • "hr": "Croatian",
  • "hu": "Hungarian",
  • "hy": "Armenian",
  • "ig": "Igbo",
  • "ii": "Sichuan Yi",
  • "iu": "Inuktitut",
  • "id": "Indonesian",
  • "ik": "Inupiaq",
  • "is": "Icelandic",
  • "it": "Italian",
  • "jv": "Javanese",
  • "jbo": "Lojban",
  • "ja": "Japanese",
  • "jsl": "Japanese Sign Language",
  • "kab": "Kabyle",
  • "kl": "Kalaallisut",
  • "kn": "Kannada",
  • "ks": "Kashmiri",
  • "ka": "Georgian",
  • "kr": "Kanuri",
  • "kk": "Kazakh",
  • "km": "Khmer",
  • "ki": "Kikuyu",
  • "rw": "Kinyarwanda",
  • "ky": "Kirghiz",
  • "kv": "Komi",
  • "kg": "Kongo",
  • "ko": "Korean",
  • "kj": "Kuanyama",
  • "ku": "Kurdish",
  • "lo": "Lao",
  • "la": "Latin",
  • "lv": "Latvian",
  • "li": "Limburgan",
  • "ln": "Lingala",
  • "lt": "Lithuanian",
  • "lb": "Luxembourgish",
  • "lu": "Luba-Katanga",
  • "lg": "Ganda",
  • "mh": "Marshallese",
  • "ml": "Malayalam",
  • "mr": "Marathi",
  • "mk": "Macedonian",
  • "mg": "Malagasy",
  • "mt": "Maltese",
  • "mn": "Mongolian",
  • "mi": "Maori",
  • "ms": "Malay (macrolanguage)",
  • "my": "Burmese",
  • "na": "Nauru",
  • "nv": "Navajo",
  • "nr": "South Ndebele",
  • "nd": "North Ndebele",
  • "ng": "Ndonga",
  • "ne": "Nepali (macrolanguage)",
  • "nl": "Dutch",
  • "nn": "Norwegian Nynorsk",
  • "nb": "Norwegian Bokmål",
  • "no": "Norwegian",
  • "ny": "Nyanja",
  • "oc": "Occitan",
  • "oj": "Ojibwa",
  • "or": "Oriya (macrolanguage)",
  • "om": "Oromo",
  • "os": "Ossetian",
  • "pa": "Panjabi",
  • "pks": "Pakistan Sign Language",
  • "pl": "Polish",
  • "pt": "Portuguese (Brazilian)",
  • "ps": "Pushto",
  • "qu": "Quechua",
  • "rm": "Romansh",
  • "ro": "Romanian",
  • "rsl": "Russian Sign Language",
  • "rn": "Rundi",
  • "ru": "Russian",
  • "sg": "Sango",
  • "sdl": "Saudi Arabian Sign Language",
  • "sfs": "South African Sign Language",
  • "si": "Sinhala",
  • "sk": "Slovak",
  • "sl": "Slovenian",
  • "se": "Northern Sami",
  • "sm": "Samoan",
  • "sn": "Shona",
  • "sd": "Sindhi",
  • "so": "Somali",
  • "st": "Southern Sotho",
  • "es": "Spanish (Spain)",
  • "sq": "Albanian",
  • "sc": "Sardinian",
  • "sr": "Serbian",
  • "ss": "Swati",
  • "su": "Sundanese",
  • "sw": "Swahili (macrolanguage)",
  • "sv": "Swedish",
  • "swl": "Swedish Sign Language",
  • "ty": "Tahitian",
  • "ta": "Tamil",
  • "tt": "Tatar",
  • "te": "Telugu",
  • "tg": "Tajik",
  • "tl": "Tagalog",
  • "th": "Thai",
  • "ti": "Tigrinya",
  • "tlh": "Klingon",
  • "to": "Tonga (Tonga Islands)",
  • "tn": "Tswana",
  • "ts": "Tsonga",
  • "tk": "Turkmen",
  • "tr": "Turkish",
  • "tw": "Twi",
  • "ug": "Uighur",
  • "uk": "Ukrainian",
  • "ur": "Urdu",
  • "uz": "Uzbek",
  • "ve": "Venda",
  • "vi": "Vietnamese",
  • "wa": "Walloon",
  • "wo": "Wolof",
  • "xh": "Xhosa",
  • "yi": "Yiddish",
  • "yo": "Yoruba",
  • "za": "Zhuang",
  • "zh": "Chinese",
  • "zu": "Zulu",
  • "zxx": "No linguistic content",
  • "tok": "Toki Pona",
  • "pt-PT": "Portuguese (Portugal)",
  • "es-419": "Spanish (Latin America)",
  • "zh-Hans": "Simplified Chinese",
  • "zh-Hant": "Traditional Chinese",
  • "ca-valencia": "Valencian",
  • "rcf": "Réunion Creole French",
  • "gcr": "Guianese Creole French"
}

List available video privacy policies

Responses

Response samples

Content type
application/json
{
  • "1": "Public",
  • "2": "Unlisted",
  • "3": "Private",
  • "4": "Internal",
  • "5": "Password protected"
}

Update a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: multipart/form-data
category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

channelId
integer

New channel of the video. The channel must be owned by the same account as the previous one. Use the "change ownership" endpoints to give a video to a channel owned by another account on the local PeerTube instance.

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

name
string [ 3 .. 120 ] characters

Video name

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string or null <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
string

Whether or not we wait transcoding before publish the video

Responses

Get a video

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "uuid": "9c9de5e8-0a1e-484a-b099-e80766180a6d",
  • "shortUUID": "2y84q2MQUMWPbiEcxNXMgC",
  • "isLive": true,
  • "liveSchedules": [
    ],
  • "createdAt": "2017-10-01T10:52:46.396Z",
  • "publishedAt": "2018-10-01T10:52:46.396Z",
  • "updatedAt": "2021-05-04T08:01:01.502Z",
  • "originallyPublishedAt": "2010-10-01T10:52:46.396Z",
  • "category": {
    },
  • "licence": {
    },
  • "language": {
    },
  • "privacy": {
    },
  • "truncatedDescription": "**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\\r\\n*A decentralized video hosting network, based on fr...\n",
  • "duration": 1419,
  • "aspectRatio": 1.778,
  • "isLocal": true,
  • "name": "What is PeerTube?",
  • "thumbnailPath": "/lazy-static/thumbnails/a65bc12f-9383-462e-81ae-8207e8b434ee.jpg",
  • "previewPath": "/lazy-static/previews/a65bc12f-9383-462e-81ae-8207e8b434ee.jpg",
  • "embedPath": "/videos/embed/a65bc12f-9383-462e-81ae-8207e8b434ee",
  • "views": 1337,
  • "likes": 42,
  • "dislikes": 7,
  • "comments": 0,
  • "nsfw": true,
  • "nsfwFlags": 0,
  • "nsfwSummary": "string",
  • "waitTranscoding": true,
  • "state": {
    },
  • "scheduledUpdate": {
    },
  • "blacklisted": true,
  • "blacklistedReason": "string",
  • "account": {
    },
  • "channel": {
    },
  • "userHistory": {
    },
  • "viewers": 0,
  • "description": "\"**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\\r\\n*A decentralized video hosting network,\nbased on free/libre software!*\\r\\n\\r\\n**Animation Produced by:** [LILA](https://libreart.info) - [ZeMarmot Team](https://film.zemarmot.net)\\r\\n\n*Directed by* Aryeom\\r\\n*Assistant* Jehan\\r\\n**Licence**: [CC-By-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)\\r\\n\\r\\n\n**Sponsored by** [Framasoft](https://framasoft.org)\\r\\n\\r\\n**Music**: [Red Step Forward](http://play.dogmazic.net/song.php?song_id=52491) - CC-By Ken Bushima\\r\\n\\r\\n\n**Movie Clip**: [Caminades 3: Llamigos](http://www.caminandes.com/) CC-By Blender Institute\\r\\n\\r\\n**Video sources**: https://gitlab.gnome.org/Jehan/what-is-peertube/\"\n",
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "tags": [
    ],
  • "commentsEnabled": true,
  • "commentsPolicy": {
    },
  • "downloadEnabled": true,
  • "inputFileUpdatedAt": "2019-08-24T14:15:22Z",
  • "trackerUrls": [],
  • "files": [
    ],
  • "streamingPlaylists": [
    ]
}

Delete a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Get complete video description

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
"**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\n"

Notify user is watching a video

Call this endpoint regularly (every 5-10 seconds for example) to notify the server the user is watching the video. After a while, PeerTube will increase video's viewers counter. If the user is authenticated, PeerTube will also store the current player time.

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
required
currentTime
required
integer <seconds>

timestamp within the video, in seconds

client
string

Client software used to watch the video. For example "Firefox", "PeerTube Approval Android", etc.

device
any
Enum: "console" "embedded" "mobile" "smarttv" "tablet" "wearable" "xr" "desktop"

Device used to watch the video. For example "desktop", "mobile", "smarttv", etc.

operatingSystem
string

Operating system used to watch the video. For example "Windows", "Ubuntu", etc.

sessionId
string

Optional param to represent the current viewer session. Used by the backend to properly count one view per session per video. PeerTube admin can configure the server to not trust this sessionId parameter but use the request IP address instead to identify a viewer.

viewEvent
string
Value: "seek"

Event since last viewing call:

  • seek - If the user seeked the video

Responses

Request samples

Content type
application/json
{
  • "currentTime": 5,
  • "viewEvent": "seek",
  • "sessionId": "string",
  • "client": "string",
  • "device": "console",
  • "operatingSystem": "string"
}

Set watching progress of a video Deprecated

This endpoint has been deprecated. Use /videos/{id}/views instead

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
required
currentTime
required
integer <seconds>

timestamp within the video, in seconds

client
string

Client software used to watch the video. For example "Firefox", "PeerTube Approval Android", etc.

device
any
Enum: "console" "embedded" "mobile" "smarttv" "tablet" "wearable" "xr" "desktop"

Device used to watch the video. For example "desktop", "mobile", "smarttv", etc.

operatingSystem
string

Operating system used to watch the video. For example "Windows", "Ubuntu", etc.

sessionId
string

Optional param to represent the current viewer session. Used by the backend to properly count one view per session per video. PeerTube admin can configure the server to not trust this sessionId parameter but use the request IP address instead to identify a viewer.

viewEvent
string
Value: "seek"

Event since last viewing call:

  • seek - If the user seeked the video

Responses

Request samples

Content type
application/json
{
  • "currentTime": 5,
  • "viewEvent": "seek",
  • "sessionId": "string",
  • "client": "string",
  • "device": "console",
  • "operatingSystem": "string"
}

Upload a video

Uses a single request to upload a video.

Authorizations:
OAuth2
Request Body schema: multipart/form-data
channelId
required
integer >= 1

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

videofile
required
string <binary>

Video file

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Request samples

## DEPENDENCIES: jq
USERNAME="<your_username>"
PASSWORD="<your_password>"
FILE_PATH="<your_file_path>"
CHANNEL_ID="<your_channel_id>"
NAME="<video_name>"
API="https://peertube2.cpy.re/api/v1"

## AUTH
client_id=$(curl -s "$API/oauth-clients/local" | jq -r ".client_id")
client_secret=$(curl -s "$API/oauth-clients/local" | jq -r ".client_secret")
token=$(curl -s "$API/users/token" \
  --data client_id="$client_id" \
  --data client_secret="$client_secret" \
  --data grant_type=password \
  --data username="$USERNAME" \
  --data password="$PASSWORD" \
  | jq -r ".access_token")

## VIDEO UPLOAD
curl -s "$API/videos/upload" \
  -H "Authorization: Bearer $token" \
  --max-time 600 \
  --form videofile=@"$FILE_PATH" \
  --form channelId=$CHANNEL_ID \
  --form name="$NAME"

Response samples

Content type
application/json
{
  • "video": {
    }
}

Initialize the resumable upload of a video

Uses a resumable protocol to initialize the upload of a video

Authorizations:
OAuth2
header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
channelId
required
integer >= 1

Channel id that will contain this video

filename
required
string <filename>

Video filename including extension

name
required
string [ 3 .. 120 ] characters

Video name

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Request samples

Content type
application/json
{
  • "name": "What is PeerTube?",
  • "channelId": 3,
  • "privacy": 1,
  • "category": 15,
  • "licence": 2,
  • "language": "en",
  • "description": "**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\n",
  • "waitTranscoding": true,
  • "generateTranscription": true,
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "nsfw": true,
  • "nsfwSummary": null,
  • "nsfwFlags": 0,
  • "tags": [
    ],
  • "commentsEnabled": true,
  • "commentsPolicy": 1,
  • "downloadEnabled": true,
  • "originallyPublishedAt": "2019-08-24T14:15:22Z",
  • "scheduleUpdate": {
    },
  • "thumbnailfile": "string",
  • "previewfile": "string",
  • "videoPasswords": [
    ],
  • "filename": "what_is_peertube.mp4"
}

Send chunk for the resumable upload of a video

Uses a resumable protocol to continue, pause or resume the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Cancel the resumable upload of a video, deleting any data uploaded so far

Uses a resumable protocol to cancel the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

Create a live

Authorizations:
OAuth2
Request Body schema: multipart/form-data
channelId
required
integer

Channel id that will contain this live video

name
required
string [ 3 .. 120 ] characters

Live video/replay name

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Live video/replay description

downloadEnabled
boolean

Enable or disable downloading for the replay of this live video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

latencyMode
integer
Enum: 1 2 3

User can select live latency mode if enabled by the instance

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this live video/replay contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

permanentLive
boolean

User can stream multiple times in a permanent live

previewfile
string <binary>

Live video/replay preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (LiveVideoReplaySettings)
saveReplay
boolean
Array of objects (LiveSchedule)
support
string

A text tell the audience how to support the creator

tags
Array of strings [ 1 .. 5 ] items [ items [ 2 .. 30 ] characters ]

Live video/replay tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Live video/replay thumbnail file

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Get information about a live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "rtmpUrl": "string",
  • "rtmpsUrl": "string",
  • "streamKey": "string",
  • "saveReplay": true,
  • "replaySettings": {
    },
  • "permanentLive": true,
  • "latencyMode": 1,
  • "schedules": [
    ]
}

Update information about a live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
latencyMode
integer
Enum: 1 2 3

User can select live latency mode if enabled by the instance

permanentLive
boolean

User can stream multiple times in a permanent live

object (LiveVideoReplaySettings)
saveReplay
boolean
Array of objects (LiveSchedule)

Responses

Request samples

Content type
application/json
{
  • "saveReplay": true,
  • "replaySettings": {
    },
  • "permanentLive": true,
  • "latencyMode": 1,
  • "schedules": [
    ]
}

Get video source file metadata

Get metadata and download link of original video file

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "filename": "string",
  • "inputFilename": "string",
  • "fileDownloadUrl": "string",
  • "resolution": {
    },
  • "size": 0,
  • "fps": 0,
  • "width": 0,
  • "height": 0,
  • "createdAt": "2019-08-24T14:15:22Z"
}

Delete video source file

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Initialize the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to initialize the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
filename
string <filename>

Video filename including extension

Responses

Request samples

Content type
application/json
{
  • "filename": "what_is_peertube.mp4"
}

Send chunk for the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to continue, pause or resume the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Cancel the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to cancel the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

List storyboards of a video

PeerTube >= 6.0

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "storyboards": [
    ]
}

List videos of a video channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search videos

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

durationMax
integer

Get videos that have this maximum duration

durationMin
integer

Get videos that have this minimum duration

endDate
string <date-time>

Get videos that are published before this date

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
originallyPublishedEndDate
string <date-time>

Get videos that are originally published before this date

originallyPublishedStartDate
string <date-time>

Get videos that are originally published after this date

privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete video information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

startDate
string <date-time>

Get videos that are published after this date

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

uuids
Array of strings

Find elements with specific UUIDs

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Video Upload

Operations dealing with adding video or audio. PeerTube supports two upload modes, and three import modes.

Upload

  • legacy, where the video file is sent in a single request
  • resumable, where the video file is sent in chunks

You can upload videos more reliably by using the resumable variant. Its protocol lets you resume an upload operation after a network interruption or other transmission failure, saving time and bandwidth in the event of network failures.

Favor using resumable uploads in any of the following cases:

  • You are transferring large files
  • The likelihood of a network interruption is high
  • Uploads are originating from a device with a low-bandwidth or unstable Internet connection, such as a mobile device

Import

  • URL-based: where the URL points to any service supported by youtube-dl
  • magnet-based: where the URI resolves to a BitTorrent resource containing a single supported video file
  • torrent-based: where the metainfo file resolves to a BitTorrent resource containing a single supported video file

The import function is practical when the desired video/audio is available online. It makes PeerTube download it for you, saving you as much bandwidth and avoiding any instability or limitation your network might have.

Upload a video

Uses a single request to upload a video.

Authorizations:
OAuth2
Request Body schema: multipart/form-data
channelId
required
integer >= 1

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

videofile
required
string <binary>

Video file

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Request samples

## DEPENDENCIES: jq
USERNAME="<your_username>"
PASSWORD="<your_password>"
FILE_PATH="<your_file_path>"
CHANNEL_ID="<your_channel_id>"
NAME="<video_name>"
API="https://peertube2.cpy.re/api/v1"

## AUTH
client_id=$(curl -s "$API/oauth-clients/local" | jq -r ".client_id")
client_secret=$(curl -s "$API/oauth-clients/local" | jq -r ".client_secret")
token=$(curl -s "$API/users/token" \
  --data client_id="$client_id" \
  --data client_secret="$client_secret" \
  --data grant_type=password \
  --data username="$USERNAME" \
  --data password="$PASSWORD" \
  | jq -r ".access_token")

## VIDEO UPLOAD
curl -s "$API/videos/upload" \
  -H "Authorization: Bearer $token" \
  --max-time 600 \
  --form videofile=@"$FILE_PATH" \
  --form channelId=$CHANNEL_ID \
  --form name="$NAME"

Response samples

Content type
application/json
{
  • "video": {
    }
}

Initialize the resumable upload of a video

Uses a resumable protocol to initialize the upload of a video

Authorizations:
OAuth2
header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
channelId
required
integer >= 1

Channel id that will contain this video

filename
required
string <filename>

Video filename including extension

name
required
string [ 3 .. 120 ] characters

Video name

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Request samples

Content type
application/json
{
  • "name": "What is PeerTube?",
  • "channelId": 3,
  • "privacy": 1,
  • "category": 15,
  • "licence": 2,
  • "language": "en",
  • "description": "**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\n",
  • "waitTranscoding": true,
  • "generateTranscription": true,
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "nsfw": true,
  • "nsfwSummary": null,
  • "nsfwFlags": 0,
  • "tags": [
    ],
  • "commentsEnabled": true,
  • "commentsPolicy": 1,
  • "downloadEnabled": true,
  • "originallyPublishedAt": "2019-08-24T14:15:22Z",
  • "scheduleUpdate": {
    },
  • "thumbnailfile": "string",
  • "previewfile": "string",
  • "videoPasswords": [
    ],
  • "filename": "what_is_peertube.mp4"
}

Send chunk for the resumable upload of a video

Uses a resumable protocol to continue, pause or resume the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Cancel the resumable upload of a video, deleting any data uploaded so far

Uses a resumable protocol to cancel the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

Import a video

Import a torrent or magnetURI or HTTP resource (if enabled by the instance administrator)

Authorizations:
OAuth2
Request Body schema: multipart/form-data
One of
channelId
required
integer >= 1

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

targetUrl
required
string <url>

remote URL where to find the import's source video

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Initialize the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to initialize the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
filename
string <filename>

Video filename including extension

Responses

Request samples

Content type
application/json
{
  • "filename": "what_is_peertube.mp4"
}

Send chunk for the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to continue, pause or resume the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Cancel the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to cancel the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

Video Imports

Operations dealing with listing, adding and removing video imports.

Import a video

Import a torrent or magnetURI or HTTP resource (if enabled by the instance administrator)

Authorizations:
OAuth2
Request Body schema: multipart/form-data
One of
channelId
required
integer >= 1

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

targetUrl
required
string <url>

remote URL where to find the import's source video

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Cancel video import

Cancel a pending video import

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Responses

Delete video import

Delete ended video import

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Responses

Video Captions

Operations dealing with listing, adding and removing closed captions of a video.

List captions of a video

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Generate a video caption

PeerTube >= 6.2 This feature has to be enabled by the administrator

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
forceTranscription
boolean
Default: false

Responses

Request samples

Content type
application/json
{
  • "forceTranscription": false
}

Add or replace a video caption

Authorizations:
OAuth2
path Parameters
captionLanguage
required
string (VideoLanguageSet)
Example: en

The caption language

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: multipart/form-data
captionfile
string <binary>

The file to upload.

Responses

Delete a video caption

Authorizations:
OAuth2
path Parameters
captionLanguage
required
string (VideoLanguageSet)
Example: en

The caption language

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Video Chapters

Operations dealing with managing chapters of a video.

Get chapters of a video

PeerTube >= 6.0

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "chapters": {
    }
}

Replace video chapters

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
Array of objects

Responses

Request samples

Content type
application/json
{
  • "chapters": [
    ]
}

Video Channels

Operations dealing with the creation, modification and listing of videos within a channel.

List video channels

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Create a video channel

Authorizations:
OAuth2
Request Body schema: application/json
displayName
required
any

Channel display name

name
required
string [ 1 .. 50 ] characters /^[a-zA-Z0-9\\-_.:]+$/

username of the channel to create

description
any

Channel description

support
any

How to support/fund the channel

Responses

Request samples

Content type
application/json
{
  • "displayName": null,
  • "description": null,
  • "support": null,
  • "name": "framasoft_videos"
}

Response samples

Content type
application/json
{
  • "videoChannel": {
    }
}

Get a video channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "url": "string",
  • "name": "chocobozzz",
  • "avatars": [
    ],
  • "host": "example.com",
  • "hostRedundancyAllowed": true,
  • "followingCount": 0,
  • "followersCount": 0,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "displayName": "Videos of Framasoft",
  • "description": "Videos made with <3 by Framasoft",
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "isLocal": true,
  • "banners": [
    ],
  • "ownerAccount": {
    }
}

Update a video channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: application/json
bulkVideosSupportUpdate
boolean

Update the support field for all videos of this channel

description
any

Channel description

displayName
any

Channel display name

support
any

How to support/fund the channel

Responses

Request samples

Content type
application/json
{
  • "displayName": null,
  • "description": null,
  • "support": null,
  • "bulkVideosSupportUpdate": true
}

Delete a video channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Responses

List videos of a video channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List playlists of a channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Reorder channel playlists

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: application/json
insertAfterPosition
required
integer >= 0

New position for the block to reorder, to add the block before the first element

startPosition
required
integer >= 1

Start position of the element to reorder

reorderLength
integer >= 1

How many element from startPosition to reorder

Responses

Request samples

Content type
application/json
{
  • "startPosition": 1,
  • "insertAfterPosition": 0,
  • "reorderLength": 1
}

List followers of a video channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Value: "createdAt"

Sort followers by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Update channel avatar

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: multipart/form-data
avatarfile
string <binary>

The file to upload.

Responses

Response samples

Content type
application/json
{
  • "avatars": [
    ]
}

Delete channel avatar

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Responses

Update channel banner

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: multipart/form-data
bannerfile
string <binary>

The file to upload.

Responses

Response samples

Content type
application/json
{
  • "banners": [
    ]
}

Delete channel banner

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Responses

Import videos in channel

Import a remote channel/playlist videos into a channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: application/json
externalChannelUrl
required
string
videoChannelSyncId
integer

If part of a channel sync process, specify its id to assign video imports to this channel synchronization

Responses

Request samples

Content type
application/json
{}

List video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

withStats
boolean

include daily view statistics for the last 30 days and total views (only if authentified as the account user)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List the synchronizations of video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search channels

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

handles
Array of strings

Find elements with these handles

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete channel information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Video Comments

Operations dealing with comments to a video. Comments are organized in threads: adding a comment in response to the video starts a thread, adding a reply to a comment adds it to its root comment thread.

List comments on user's videos

PeerTube >= 6.2

Authorizations:
OAuth2
query Parameters
string or Array of strings

PeerTube >= 6.2 filter on comments that contain one of these automatic tags

isHeldForReview
boolean

only display comments that are held for review

search
string

Plain text search, applied to various parts of the model depending on endpoint

searchAccount
string

Filter comments by searching on the account

searchVideo
string

Filter comments by searching on the video

videoChannelId
integer

Limit results on this specific video channel

videoId
integer

Limit results on this specific video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List threads of a video

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Enum: "-createdAt" "-totalReplies"

Sort comments by criteria

start
integer >= 0

Offset used to paginate results

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "total": 0,
  • "totalNotDeletedComments": 0,
  • "data": [
    ]
}

Create a thread

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
text
required
string <html> [ 1 .. 10000 ] characters

Text of the comment

Responses

Request samples

Content type
application/json
{
  • "text": "This video is wonderful!"
}

Response samples

Content type
application/json
{
  • "comment": {
    }
}

Get a thread

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

threadId
required
integer

The thread id (root comment id)

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "comment": {
    },
  • "children": [
    ]
}

List instance comments

Authorizations:
OAuth2
query Parameters
string or Array of strings

PeerTube >= 6.2 filter on comments that contain one of these automatic tags

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

onLocalVideo
boolean

Display only objects of local or remote videos

search
string

Plain text search, applied to various parts of the model depending on endpoint

searchAccount
string

Filter comments by searching on the account

searchVideo
string

Filter comments by searching on the video

videoChannelId
integer

Limit results on this specific video channel

videoId
integer

Limit results on this specific video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Reply to a thread of a video

Authorizations:
OAuth2
path Parameters
commentId
required
integer >= 1
Example: 42

The comment id

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Request Body schema: application/json
text
required
string <html> [ 1 .. 10000 ] characters

Text of the comment

Responses

Request samples

Content type
application/json
{
  • "text": "This video is wonderful!"
}

Response samples

Content type
application/json
{
  • "comment": {
    }
}

Delete a comment or a reply

Authorizations:
OAuth2
path Parameters
commentId
required
integer >= 1
Example: 42

The comment id

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Approve a comment

PeerTube >= 6.2 Approve a comment that requires a review

Authorizations:
OAuth2
path Parameters
commentId
required
integer >= 1
Example: 42

The comment id

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Video Rates

Like/dislike a video.

Get rate of my user for a video

Authorizations:
OAuth2
path Parameters
videoId
required
integer >= 1
Example: 42

The video id

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "rating": "like"
}

Like/dislike a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Request Body schema: application/json
rating
required
string
Enum: "like" "dislike"

Responses

Request samples

Content type
application/json
{
  • "rating": "like"
}

Video Playlists

Operations dealing with playlists of videos. Playlists are bound to users and/or channels.

List playlists of a channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Reorder channel playlists

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: application/json
insertAfterPosition
required
integer >= 0

New position for the block to reorder, to add the block before the first element

startPosition
required
integer >= 1

Start position of the element to reorder

reorderLength
integer >= 1

How many element from startPosition to reorder

Responses

Request samples

Content type
application/json
{
  • "startPosition": 1,
  • "insertAfterPosition": 0,
  • "reorderLength": 1
}

List available playlist privacy policies

Responses

Response samples

Content type
application/json
{
  • "1": "Public",
  • "2": "Unlisted",
  • "3": "Private"
}

List video playlists

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Create a video playlist

If the video playlist is set as public, videoChannelId is mandatory.

Authorizations:
OAuth2
Request Body schema: multipart/form-data
displayName
required
string [ 1 .. 120 ] characters

Video playlist display name

description
string [ 3 .. 1000 ] characters

Video playlist description

privacy
integer (VideoPlaylistPrivacySet)
Enum: 1 2 3

Video playlist privacy policy (see /video-playlists/privacies)

thumbnailfile
string <binary>

Video playlist thumbnail file

videoChannelId
integer >= 1

Video channel in which the playlist will be published

Responses

Response samples

Content type
application/json
{
  • "videoPlaylist": {
    }
}

Get a video playlist

path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "uuid": "9c9de5e8-0a1e-484a-b099-e80766180a6d",
  • "shortUUID": "2y84q2MQUMWPbiEcxNXMgC",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "description": "string",
  • "displayName": "string",
  • "isLocal": true,
  • "videoLength": 0,
  • "thumbnailPath": "string",
  • "privacy": {
    },
  • "type": {
    },
  • "ownerAccount": {
    },
  • "videoChannel": {
    },
  • "videoChannelPosition": 1
}

Update a video playlist

If the video playlist is set as public, the playlist must have a assigned channel.

Authorizations:
OAuth2
path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Request Body schema: multipart/form-data
description
string

Video playlist description

displayName
string [ 1 .. 120 ] characters

Video playlist display name

privacy
integer (VideoPlaylistPrivacySet)
Enum: 1 2 3

Video playlist privacy policy (see /video-playlists/privacies)

thumbnailfile
string <binary>

Video playlist thumbnail file

videoChannelId
integer >= 1

Video channel in which the playlist will be published

Responses

Delete a video playlist

Authorizations:
OAuth2
path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Responses

List videos of a playlist

path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add a video in a playlist

Authorizations:
OAuth2
path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Request Body schema: application/json
required
string or integer

Video to add in the playlist

startTimestamp
integer <seconds>

Start the video at this specific timestamp

stopTimestamp
integer <seconds>

Stop the video at this specific timestamp

Responses

Request samples

Content type
application/json
{
  • "videoId": "9c9de5e8-0a1e-484a-b099-e80766180a6d",
  • "startTimestamp": 0,
  • "stopTimestamp": 0
}

Response samples

Content type
application/json
{
  • "videoPlaylistElement": {
    }
}

Reorder playlist elements

Authorizations:
OAuth2
path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Request Body schema: application/json
insertAfterPosition
required
integer >= 0

New position for the block to reorder, to add the block before the first element

startPosition
required
integer >= 1

Start position of the element to reorder

reorderLength
integer >= 1

How many element from startPosition to reorder

Responses

Request samples

Content type
application/json
{
  • "startPosition": 1,
  • "insertAfterPosition": 0,
  • "reorderLength": 1
}

Update a playlist element

Authorizations:
OAuth2
path Parameters
playlistElementId
required
integer (id) >= 1
Example: 42

Playlist element id

playlistId
required
integer >= 1
Example: 42

Playlist id

Request Body schema: application/json
startTimestamp
integer <seconds>

Start the video at this specific timestamp

stopTimestamp
integer <seconds>

Stop the video at this specific timestamp

Responses

Request samples

Content type
application/json
{
  • "startTimestamp": 0,
  • "stopTimestamp": 0
}

Delete an element from a playlist

Authorizations:
OAuth2
path Parameters
playlistElementId
required
integer (id) >= 1
Example: 42

Playlist element id

playlistId
required
integer >= 1
Example: 42

Playlist id

Responses

Check video exists in my playlists

Authorizations:
OAuth2
query Parameters
videoIds
required
Array of integers[ items >= 1 ]
Example: videoIds=42

The video ids to check

Responses

Response samples

Content type
application/json
{
  • "videoId": [
    ]
}

List playlists of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search playlists

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete playlist information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

uuids
Array of strings

Find elements with specific UUIDs

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Video Stats

Video statistics

Get overall stats of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

Content type
application/json
{
  • "averageWatchTime": 0,
  • "totalWatchTime": 0,
  • "viewersPeak": 0,
  • "totalViewers": 0,
  • "viewersPeakDate": "2019-08-24T14:15:22Z",
  • "countries": [
    ],
  • "subdivisions": [
    ]
}

Get user agent stats of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

Content type
application/json
{
  • "clients": [
    ],
  • "devices": [
    ],
  • "operatingSystem": [
    ]
}

Get retention stats of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "data": [
    ]
}

Get timeserie stats of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

metric
required
string
Enum: "viewers" "aggregateWatchTime"

The metric to get

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

Content type
application/json
{
  • "data": [
    ]
}

Video Ownership Change

List video ownership changes

Authorizations:
OAuth2

Responses

Accept ownership change request

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Refuse ownership change request

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Request ownership change

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
required
username
required
string

Responses

Request samples

Content type
application/json
{
  • "username": "string"
}

Video Mirroring

PeerTube instances can mirror videos from one another, and help distribute some videos.

For importing videos as your own, refer to video imports.

List videos being mirrored

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Value: "name"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

target
required
string
Enum: "my-videos" "remote-videos"

direction of the mirror

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Mirror a video

Authorizations:
OAuth2
Request Body schema: application/json
videoId
required
integer >= 1

object id for the video

Responses

Request samples

Content type
application/json
{
  • "videoId": 42
}

Delete a mirror done on a video

Authorizations:
OAuth2
path Parameters
redundancyId
required
string

id of an existing redundancy on a video

Responses

Video Files

Operations on video files

Delete video HLS files

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Delete video Web Video files

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Video Transcoding

Video transcoding related operations

Create a studio task

Create a task to edit a video (cut, add intro/outro etc)

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: multipart/form-data
required
Array
Any of
name
string
Value: "cut"
object

Responses

Create a transcoding job

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
transcodingType
required
string
Enum: "hls" "web-video"
forceTranscoding
boolean
Default: false

If the video is stuck in transcoding state, do it anyway

Responses

Request samples

Content type
application/json
{
  • "transcodingType": "hls",
  • "forceTranscoding": false
}

Live Videos

Create a live

Authorizations:
OAuth2
Request Body schema: multipart/form-data
channelId
required
integer

Channel id that will contain this live video

name
required
string [ 3 .. 120 ] characters

Live video/replay name

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Live video/replay description

downloadEnabled
boolean

Enable or disable downloading for the replay of this live video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

latencyMode
integer
Enum: 1 2 3

User can select live latency mode if enabled by the instance

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this live video/replay contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

permanentLive
boolean

User can stream multiple times in a permanent live

previewfile
string <binary>

Live video/replay preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (LiveVideoReplaySettings)
saveReplay
boolean
Array of objects (LiveSchedule)
support
string

A text tell the audience how to support the creator

tags
Array of strings [ 1 .. 5 ] items [ items [ 2 .. 30 ] characters ]

Live video/replay tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Live video/replay thumbnail file

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Get information about a live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "rtmpUrl": "string",
  • "rtmpsUrl": "string",
  • "streamKey": "string",
  • "saveReplay": true,
  • "replaySettings": {
    },
  • "permanentLive": true,
  • "latencyMode": 1,
  • "schedules": [
    ]
}

Update information about a live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
latencyMode
integer
Enum: 1 2 3

User can select live latency mode if enabled by the instance

permanentLive
boolean

User can stream multiple times in a permanent live

object (LiveVideoReplaySettings)
saveReplay
boolean
Array of objects (LiveSchedule)

Responses

Request samples

Content type
application/json
{
  • "saveReplay": true,
  • "replaySettings": {
    },
  • "permanentLive": true,
  • "latencyMode": 1,
  • "schedules": [
    ]
}

List live sessions

List all sessions created in a particular live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Get live session of a replay

If the video is a replay of a live, you can find the associated live session using this endpoint

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "startDate": "2019-08-24T14:15:22Z",
  • "endDate": "2019-08-24T14:15:22Z",
  • "error": 1,
  • "replayVideo": {
    }
}

Channels Sync

Operations dealing with synchronizing PeerTube user's channel with channels of other platforms

Import videos in channel

Import a remote channel/playlist videos into a channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: application/json
externalChannelUrl
required
string
videoChannelSyncId
integer

If part of a channel sync process, specify its id to assign video imports to this channel synchronization

Responses

Request samples

Content type
application/json
{}

Create a synchronization for a video channel

Authorizations:
OAuth2
Request Body schema: application/json
externalChannelUrl
string
videoChannelId
integer (id) >= 1

Responses

Request samples

Content type
application/json
{}

Response samples

Content type
application/json
{
  • "videoChannelSync": {
    }
}

Delete a video channel synchronization

Authorizations:
OAuth2
path Parameters
channelSyncId
required
integer >= 1
Example: 42

Channel Sync id

Responses

Triggers the channel synchronization job, fetching all the videos from the remote channel

Authorizations:
OAuth2
path Parameters
channelSyncId
required
integer >= 1
Example: 42

Channel Sync id

Responses

List the synchronizations of video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Video Passwords

Operation on video passwords

List video passwords

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Update video passwords

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
passwords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]

Responses

Request samples

Content type
application/json
{
  • "passwords": [
    ]
}

Delete a video password

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

videoPasswordId
required
integer (id) >= 1
Example: 42

The video password id

Responses

Search

The search helps to find videos or channels from within the instance and beyond. Videos from other instances federated by the instance (that is, instances followed by the instance) can be found via keywords and other criteria of the advanced search.

Administrators can also enable the use of a remote search system, indexing videos and channels not could be not federated by the instance.

Search videos

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

durationMax
integer

Get videos that have this maximum duration

durationMin
integer

Get videos that have this minimum duration

endDate
string <date-time>

Get videos that are published before this date

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
originallyPublishedEndDate
string <date-time>

Get videos that are originally published before this date

originallyPublishedStartDate
string <date-time>

Get videos that are originally published after this date

privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete video information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

startDate
string <date-time>

Get videos that are published after this date

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

uuids
Array of strings

Find elements with specific UUIDs

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search channels

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

handles
Array of strings

Find elements with these handles

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete channel information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search playlists

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete playlist information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

uuids
Array of strings

Find elements with specific UUIDs

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Abuses

Abuses deal with reports of local or remote videos/comments/accounts alike.

List my abuses

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

id
integer

only list the report with this id

sort
string
Enum: "-id" "-createdAt" "-state"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List abuses

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

filter
string
Enum: "video" "comment" "account"

only list account, comment or video reports

id
integer

only list the report with this id

predefinedReason
Array of strings (PredefinedAbuseReasons) <= 8 items
Items Enum: "violentOrAbusive" "hatefulOrAbusive" "spamOrMisleading" "privacy" "rights" "serverRules" "thumbnails" "captions"

predefined reason the listed reports should contain

search
string

plain search that will match with video titles, reporter names and more

searchReportee
string

only list reports of a specific reportee

searchReporter
string

only list reports of a specific reporter

searchVideo
string

only list reports of a specific video

searchVideoChannel
string

only list reports of a specific video channel

sort
string
Enum: "-id" "-createdAt" "-state"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

videoIs
string
Enum: "deleted" "blacklisted"

only list deleted or blocklisted videos

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Report an abuse

Authorizations:
OAuth2
Request Body schema: application/json
required
reason
required
string [ 2 .. 3000 ] characters

Reason why the user reports this video

object
object
predefinedReasons
Array of strings (PredefinedAbuseReasons) <= 8 items
Items Enum: "violentOrAbusive" "hatefulOrAbusive" "spamOrMisleading" "privacy" "rights" "serverRules" "thumbnails" "captions"

Reason categories that help triage reports

object

Responses

Request samples

Content type
application/json
{
  • "reason": "string",
  • "predefinedReasons": [
    ],
  • "video": {
    },
  • "comment": {
    },
  • "account": {
    }
}

Response samples

Content type
application/json
{
  • "abuse": {
    }
}

Update an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Request Body schema: application/json
moderationComment
string [ 2 .. 3000 ] characters

Update the report comment visible only to the moderation team

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

Responses

Request samples

Content type
application/json
{
  • "state": 1,
  • "moderationComment": "string"
}

Delete an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Responses

List messages of an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add message to an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Request Body schema: application/json
required
message
required
string [ 2 .. 3000 ] characters

Message to send

Responses

Request samples

Content type
application/json
{
  • "message": "string"
}

Delete an abuse message

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

abuseMessageId
required
integer >= 1
Example: 42

Abuse message id

Responses

Video Blocks

Operations dealing with blocking videos (removing them from view and preventing interactions).

Block a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Unblock a video by its id

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

List video blocks

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

plain search that will match with video titles, and more

sort
string
Enum: "-id" "name" "-duration" "-views" "-likes" "-dislikes" "-uuid" "-createdAt"

Sort blocklists by criteria

start
integer >= 0

Offset used to paginate results

type
integer
Enum: 1 2

list only blocks that match this type:

  • 1: manual block
  • 2: automatic block that needs review

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Account Blocks

Get block status of accounts/hosts

query Parameters
accounts
Array of strings
Example: accounts=goofy@example.com&accounts=donald@example.com

Check if these accounts are blocked

hosts
Array of strings
Example: hosts=example.com

Check if these hosts are blocked

Responses

Response samples

Content type
application/json
{
  • "accounts": {
    },
  • "hosts": {
    }
}

List account blocks

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Block an account

Authorizations:
OAuth2
Request Body schema: application/json
accountName
required
string

account to block, in the form username@domain

Responses

Request samples

Content type
application/json
{
  • "accountName": "chocobozzz@example.org"
}

Unblock an account by its handle

Authorizations:
OAuth2
path Parameters
accountName
required
string

account to unblock, in the form username@domain

Responses

Server Blocks

Get block status of accounts/hosts

query Parameters
accounts
Array of strings
Example: accounts=goofy@example.com&accounts=donald@example.com

Check if these accounts are blocked

hosts
Array of strings
Example: hosts=example.com

Check if these hosts are blocked

Responses

Response samples

Content type
application/json
{
  • "accounts": {
    },
  • "hosts": {
    }
}

List server blocks

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Block a server

Authorizations:
OAuth2
Request Body schema: application/json
host
required
string <hostname>

server domain to block

Responses

Request samples

Content type
application/json
{
  • "host": "example.com"
}

Unblock a server by its domain

Authorizations:
OAuth2
path Parameters
host
required
string <hostname>

server domain to unblock

Responses

Automatic Tags

Automatic tags set on objects (like comments or videos) by specific rules (external link, watched words, etc.)

Get account auto tag policies on comments

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to get auto tag policies

Responses

Response samples

Content type
application/json
{
  • "review": [
    ]
}

Update account auto tag policies on comments

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to update auto tag policies

Request Body schema: application/json
review
Array of strings

Auto tags that automatically set the comment in review state

Responses

Request samples

Content type
application/json
{
  • "review": [
    ]
}

Get account available auto tags

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to get auto tag policies

Responses

Response samples

Content type
application/json
{
  • "available": [
    ]
}

Get server available auto tags

PeerTube >= 6.2

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "available": [
    ]
}

Watched Words

Manage list of watched words to detect patterns on objects (like comments of videos)

List account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to list watched words

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Response samples

Content type
application/json
{
  • "watchedWordsList": {
    }
}

Update account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
listId
required
string

list of watched words to update

Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Delete account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
listId
required
string

list of watched words to delete

Responses

List server watched words

PeerTube >= 6.2

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Response samples

Content type
application/json
{
  • "watchedWordsList": {
    }
}

Update server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
listId
required
string

list of watched words to update

Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Delete server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
listId
required
string

list of watched words to delete

Responses

Config

Each server exposes public information regarding supported videos and options.

Get instance public configuration

Responses

Response samples

Content type
application/json
{
  • "client": {
    },
  • "defaults": {
    },
  • "webadmin": {
    },
  • "instance": {},
  • "search": {
    },
  • "plugin": {
    },
  • "theme": {
    },
  • "email": {
    },
  • "contactForm": {
    },
  • "serverVersion": "7.3.0-nightly-2025-10-06",
  • "serverCommit": "",
  • "transcoding": {
    },
  • "live": {
    },
  • "videoStudio": {
    },
  • "videoFile": {
    },
  • "videoTranscription": {
    },
  • "import": {
    },
  • "export": {
    },
  • "autoBlacklist": {
    },
  • "avatar": {
    },
  • "banner": {
    },
  • "video": {
    },
  • "videoCaption": {
    },
  • "user": {
    },
  • "videoChannels": {
    },
  • "trending": {
    },
  • "tracker": {
    },
  • "followings": {},
  • "federation": {
    },
  • "broadcastMessage": {
    },
  • "homepage": {
    },
  • "openTelemetry": {
    },
  • "views": {
    },
  • "storyboards": {
    },
  • "webrtc": {
    },
  • "nsfwFlagsSettings": {
    },
  • "fieldsConstraints": {
    },
  • "signup": {
    }
}

Get instance "About" information

Responses

Response samples

Content type
application/json
{}

Get instance runtime configuration

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "instance": {
    },
  • "theme": {
    },
  • "services": {
    },
  • "cache": {
    },
  • "signup": {
    },
  • "admin": {
    },
  • "contactForm": {
    },
  • "user": {
    },
  • "transcoding": {
    },
  • "import": {
    },
  • "autoBlacklist": {
    },
  • "followers": {
    },
  • "storyboard": {
    },
  • "defaults": {
    }
}

Set instance runtime configuration

Authorizations:
OAuth2

Responses

Delete instance runtime configuration

Authorizations:
OAuth2

Responses

Update instance banner

Authorizations:
OAuth2
Request Body schema: multipart/form-data
bannerfile
string <binary>

The file to upload.

Responses

Delete instance banner

Authorizations:
OAuth2

Responses

Update instance avatar

Authorizations:
OAuth2
Request Body schema: multipart/form-data
avatarfile
string <binary>

The file to upload.

Responses

Delete instance avatar

Authorizations:
OAuth2

Responses

Update instance logo

Authorizations:
OAuth2
path Parameters
logoType
required
string
Enum: "favicon" "header-wide" "header-square" "opengraph"
Request Body schema: multipart/form-data
logofile
string <binary>

The file to upload.

Responses

Delete instance logo

Authorizations:
OAuth2
path Parameters
logoType
required
string
Enum: "favicon" "header-wide" "header-square" "opengraph"

Responses

Client Config

Configuration of the web client

Update client language

Set a cookie so that, the next time the client refreshes the HTML of the web interface, PeerTube will use the next language

Request Body schema: application/json
language
required
string

Language code to set

Responses

Request samples

Content type
application/json
{
  • "language": "en-US"
}

Homepage

Get and update the custom homepage

Get instance custom homepage

Responses

Response samples

Content type
application/json
{
  • "content": "string"
}

Set instance custom homepage

Authorizations:
OAuth2
Request Body schema: application/json
content
string

content of the homepage, that will be injected in the client

Responses

Request samples

Content type
application/json
{
  • "content": "string"
}

Instance Follows

Managing servers which the instance interacts with is crucial to the concept of federation in PeerTube and external video indexation. The PeerTube server then deals with inter-server ActivityPub operations and propagates information across its social graph by posting activities to actors' inbox endpoints.

List instances following the server

query Parameters
actorType
string
Enum: "Person" "Application" "Group" "Service" "Organization"
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

state
string
Enum: "pending" "accepted"

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Remove or reject a follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

Reject a pending follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

Accept a pending follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

List instances followed by the server

query Parameters
actorType
string
Enum: "Person" "Application" "Group" "Service" "Organization"
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

state
string
Enum: "pending" "accepted"

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Follow a list of actors (PeerTube instance, channel or account)

Authorizations:
OAuth2
Request Body schema: application/json
handles
Array of strings unique
hosts
Array of strings <hostname> unique [ items <hostname > ]

Responses

Request samples

Content type
application/json
{
  • "hosts": [
    ],
  • "handles": [
    ]
}

Unfollow an actor (PeerTube instance, channel or account)

Authorizations:
OAuth2
path Parameters
hostOrHandle
required
string

The hostOrHandle to unfollow

Responses

Instance Redundancy

Redundancy is part of the inter-server solidarity that PeerTube fosters. Manage the list of instances you wish to help by seeding their videos according to the policy of video selection of your choice. Note that you have a similar functionality to mirror individual videos, see video mirroring.

Update a server redundancy policy

Authorizations:
OAuth2
path Parameters
host
required
string <hostname>

server domain to mirror

Request Body schema: application/json
redundancyAllowed
required
boolean

allow mirroring of the host's local videos

Responses

Request samples

Content type
application/json
{
  • "redundancyAllowed": true
}

Plugins

Managing plugins installed from a local path or from NPM, or search for new ones.

List plugins

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

pluginType
integer
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

uninstalled
boolean

Responses

Response samples

Content type
application/json
{}

List available plugins

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

currentPeerTubeEngine
string
pluginType
integer
search
string
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{}

Install a plugin

Authorizations:
OAuth2
Request Body schema: application/json
One of
npmName
required
string

Responses

Request samples

Content type
application/json
{
  • "path": "string"
}

Update a plugin

Authorizations:
OAuth2
Request Body schema: application/json
One of
npmName
required
string

Responses

Request samples

Content type
application/json
{
  • "path": "string"
}

Uninstall a plugin

Authorizations:
OAuth2
Request Body schema: application/json
npmName
required
string

name of the plugin/theme in its package.json

Responses

Request samples

Content type
application/json
{
  • "npmName": "peertube-plugin-auth-ldap"
}

Get a plugin

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{}

Set a plugin's settings

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Request Body schema: application/json
object

Responses

Request samples

Content type
application/json
{
  • "settings": { }
}

Get a plugin's public settings

path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{ }

Get a plugin's registered settings

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{ }

Stats

Statistics

Get instance stats

Get instance public statistics. This endpoint is cached.

Responses

Response samples

Content type
application/json
{
  • "totalUsers": 0,
  • "totalDailyActiveUsers": 0,
  • "totalWeeklyActiveUsers": 0,
  • "totalMonthlyActiveUsers": 0,
  • "totalModerators": 0,
  • "totalAdmins": 0,
  • "totalLocalVideos": 0,
  • "totalLocalVideoViews": 0,
  • "totalLocalVideoComments": 0,
  • "totalLocalVideoFilesSize": 0,
  • "totalVideos": 0,
  • "totalVideoComments": 0,
  • "totalLocalVideoChannels": 0,
  • "totalLocalDailyActiveVideoChannels": 0,
  • "totalLocalWeeklyActiveVideoChannels": 0,
  • "totalLocalMonthlyActiveVideoChannels": 0,
  • "totalLocalPlaylists": 0,
  • "totalInstanceFollowers": 0,
  • "totalInstanceFollowing": 0,
  • "videosRedundancy": [
    ],
  • "totalActivityPubMessagesProcessed": 0,
  • "totalActivityPubMessagesSuccesses": 0,
  • "totalActivityPubMessagesErrors": 0,
  • "activityPubMessagesProcessedPerSecond": 0,
  • "totalActivityPubMessagesWaiting": 0,
  • "averageRegistrationRequestResponseTimeMs": 0,
  • "totalRegistrationRequestsProcessed": 0,
  • "totalRegistrationRequests": 0,
  • "averageAbuseResponseTimeMs": 0,
  • "totalAbusesProcessed": 0,
  • "totalAbuses": 0
}

Create playback metrics

These metrics are exposed by OpenTelemetry metrics exporter if enabled.

Request Body schema: application/json
downloadedBytesHTTP
required
number

How many bytes were downloaded with HTTP since the last metric creation

downloadedBytesP2P
required
number

How many bytes were downloaded with P2P since the last metric creation

errors
required
number

How many errors occurred since the last metric creation

p2pEnabled
required
boolean
playerMode
required
string
Enum: "p2p-media-loader" "web-video"
resolutionChanges
required
number

How many resolution changes occurred since the last metric creation

uploadedBytesP2P
required
number

How many bytes were uploaded with P2P since the last metric creation

required
id (integer) or UUIDv4 (string) or shortUUID (string)
bufferStalled
number

How many times buffer has been stalled since the last metric creation

fps
number

Current player video fps

p2pPeers
number

P2P peers connected (doesn't include WebSeed peers)

resolution
number

Current player video resolution

Responses

Request samples

Content type
application/json
{
  • "playerMode": "p2p-media-loader",
  • "resolution": 0,
  • "fps": 0,
  • "p2pEnabled": true,
  • "p2pPeers": 0,
  • "resolutionChanges": 0,
  • "bufferStalled": 0,
  • "errors": 0,
  • "downloadedBytesP2P": 0,
  • "downloadedBytesHTTP": 0,
  • "uploadedBytesP2P": 0,
  • "videoId": 42
}

Logs

Send client log

Request Body schema: application/json
level
required
any
Enum: "error" "warn"
message
required
string
url
required
string

URL of the current user page

meta
string

Additional information regarding this log

stackTrace
string

Stack trace of the error if there is one

userAgent
string

User agent of the web browser that sends the message

Responses

Request samples

Content type
application/json
{
  • "message": "string",
  • "url": "string",
  • "level": "error",
  • "stackTrace": "string",
  • "userAgent": "string",
  • "meta": "string"
}

Get instance logs

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • "string"
]

Get instance audit logs

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • "string"
]

Job

Jobs are long-running tasks enqueued and processed by the instance itself. No additional worker registration is currently available.

Pause job queue

Authorizations:
OAuth2

Responses

Resume job queue

Authorizations:
OAuth2

Responses

List instance jobs

Authorizations:
OAuth2
path Parameters
state
required
string
Enum: "" "active" "completed" "failed" "waiting" "delayed"

The state of the job ('' for for no filter)

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

jobType
string
Enum: "activitypub-follow" "activitypub-http-broadcast" "activitypub-http-fetcher" "activitypub-http-unicast" "email" "video-transcoding" "video-file-import" "video-import" "videos-views-stats" "activitypub-refresher" "video-redundancy" "video-live-ending" "video-channel-import"

job type

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Runner Registration Token

Manage runner registration token

Generate registration token

Generate a new runner registration token

Authorizations:
OAuth2

Responses

Remove registration token

Remove a registration token. Runners that used this token for their registration are automatically removed.

Authorizations:
OAuth2
path Parameters
registrationTokenId
required
integer

Responses

List registration tokens

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Value: "createdAt"

Sort registration tokens by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Runner Jobs

Request a new job

API used by PeerTube runners

Request Body schema: application/json
runnerToken
required
string
jobTypes
Array of strings

Filter jobs depending on their types

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobTypes": [
    ]
}

Response samples

Content type
application/json
{
  • "availableJobs": [
    ]
}

Accept job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

Response samples

Content type
application/json
{
  • "job": {
    }
}

Abort job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
reason
required
string

Why the runner aborts this job

runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "reason": "string"
}

Update job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
runnerToken
required
string
object
progress
integer

Update job progression percentage (optional)

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "progress": 0,
  • "payload": {
    }
}

Post job error

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
message
required
string

Why the runner failed to process this job

runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "message": "string"
}

Post job success

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
required
VOD web video transcoding (object) or VOD HLS transcoding (object) or VOD audio merge transcoding (object) or Live RTMP to HLS transcoding (object)
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "payload": {
    }
}

Cancel a job

Authorizations:
OAuth2
path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d

Responses

Delete a job

The endpoint will first cancel the job if needed, and then remove it from the database. Children jobs will also be removed

Authorizations:
OAuth2
path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d

Responses

List jobs

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Enum: "updatedAt" "createdAt" "priority" "state" "progress"

Sort runner jobs by criteria

start
integer >= 0

Offset used to paginate results

stateOneOf
Array of integers (RunnerJobState)
Items Enum: 1 2 3 4 5 6 7 8

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Runners

Register a new runner

API used by PeerTube runners

Request Body schema: application/json
name
required
string
registrationToken
required
string
description
string

Responses

Request samples

Content type
application/json
{
  • "registrationToken": "string",
  • "name": "string",
  • "description": "string"
}

Response samples

Content type
application/json
{
  • "id": 0,
  • "runnerToken": "string"
}

Unregister a runner

API used by PeerTube runners

Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

Delete a runner

Authorizations:
OAuth2
path Parameters
runnerId
required
integer
Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

List runners

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Value: "createdAt"

Sort runners by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}