GET https://api.mave.io/v1/videos
Hiermee haal je de video’s direct in één folder op, gesorteerd op aanmaakdatum (nieuwste eerst). Zonder collection krijg je alleen video’s in de root van de space, dus niet de video’s in collecties. De resultaten zijn gepagineerd met standaard 15 items per pagina. Hiervoor is het API-token vereist.
| Parameter | Type |
|---|---|
| page | positief geheel getal (standaard: 1) |
| per_page | positief geheel getal (standaard: 15, max. 100) |
| uploaded | boolean; gebruik true of false om op uploadstatus te filteren. Zonder deze parameter worden beide getoond. |
| archived | boolean; true toont gearchiveerde items. Zonder deze parameter of bij false worden actieve items getoond. |
| collection | collectie-ID; toont alleen directe inhoud. Laat weg of gebruik een lege waarde voor de root van de space. |
| show_collections | boolean; bij true worden directe subcollecties ook in data opgenomen. |
{
"current_page": 1, // the page you are looking at
"data": [
{
"created": 1643723823,
"duration": 0.108333, // duration of the video
"width": 1920, // width of the video in pixels
"height": 1080, // height of the video in pixels
"id": "IIzFKHuukg", // this can be used to put into the component
"last_upload": 1643746229,
"name": "test.mp4", // name of the file or chosen name
"object": "video",
"poster_image": "https://image.mave.io/IIzFKHuukg.jpg?time=0", // defaults to first frame of the video
"size": 358923, // size of the video in bytes
"renditions": ["sd", "hd"], // size of the video
"subtitles": ["en", "nl"] // available subtitles
},
{
"created": 1643723737,
"duration": null,
"width": null,
"height": null,
"id": "k1iFD7h4rW",
"last_upload": null,
"name": null, // empty embed
"object": "video",
"poster_image": null,
"size": null,
"renditions": [],
"subtitles": []
},
{
"created": 1643723523,
"duration": null,
"width": null,
"height": null,
"id": "NyzCJgb28a",
"last_upload": null,
"name": null,
"object": "video",
"poster_image": null,
"size": null,
"renditions": [],
"subtitles": []
},
{
"created": 1643723504,
"duration": null,
"width": null,
"height": null,
"id": "rV4k65cLmE",
"last_upload": null,
"name": null,
"object": "video",
"poster_image": null,
"size": null,
"renditions": [],
"subtitles": []
}
], // all the video embeds that have been created
"has_more": false, // the possibility whether there are more video embeds to retrieve
"object": "list", // the type of object you're looking at
"total_items": 4, // the total of video embeds
"total_pages": 1 // the total pages that are available
}