List videos
Authorizations
Query parameters
pagenumberOptionalDefault: 
The page number to retrieve.
0limitnumber · max: 100OptionalDefault: 
The maximum number of items per page.
20Responses
200
Successful response
application/json
400
Invalid request
application/json
get
/videosGET /api/v1/videos HTTP/1.1
Host: shortgenius.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "videos": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "title": null,
      "caption": null,
      "created_at": "text",
      "updated_at": null,
      "series_id": "123e4567-e89b-12d3-a456-426614174000",
      "publishing_state": "pending",
      "publish_at": null
    }
  ],
  "has_more": true
}Last updated