GET https://mave.io/api/v1/videos
List all video embeds from a space. Requires the API token.
page
integer
per_page
integer (max. 100)
uploaded
boolean (when adding this you can filter videos either uploaded, not uploaded or when not provided: mixed, sorted by upload)
{
"current_page": 1, // the page you are looking at
"data": [
{
"created": 1643723823,
"id": "IIzFKHuukg", // this can be used to put into the component
"last_upload": 1643746229,
"object": "video",
"poster_image": "https://image.mave.io/IIzFKHuukg.jpg?time=0" // defaults to first frame of the video
},
{
"created": 1643723737,
"id": "k1iFD7h4rW",
"last_upload": null, // empty embed
"object": "video",
"poster_image": null
},
{
"created": 1643723523,
"id": "NyzCJgb28a",
"last_upload": null,
"object": "video",
"poster_image": null
},
{
"created": 1643723504,
"id": "rV4k65cLmE",
"last_upload": null,
"object": "video",
"poster_image": null
}
], // all the video embeds that have been created
"has_more": false, // the posibility 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
}