DevelopersDevelopers
License
Contribute
Advertise
License
Contribute
Advertise
  • Before you start
  • Getting started
  • Schema
  • Authentication
  • Videos
  • Collections
  • Categories
  • Audios
  • Video Scenes
  • MCP Server

Schema

API Schema.

Location

The base URL for all endpoints is https://api.coverr.co. You will use it in combination with all endpoints' paths.

For example, the videos endpoint will have this url: https://api.coverr.co/videos.

Responses

The API returns information in JSON format.

Pagination

Most endpoints split long response data into multiple pages.

You can control it with the page (zero based) and page_size query parameters.

Paginated response example:

{
  "page": 0,       // current page
  "pages": 7,      // number of pages
  "page_size": 20, // number of results per page
  "total": 123,    // number of all results
  "hits": [        // current page data slice
    ...
  ]
}
Prev
Getting started
Next
Authentication