List supported video sources and their capabilities
GET
/api/v1/sources
const url = 'http://localhost:8080/api/v1/sources';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8080/api/v1/sourcesReturns one entry per provider with the operations it exposes, whether credentials are required for premium content, and whether they are currently configured. Safe to call without authentication.
Responses
Section titled “ Responses ”OK
Media type */*
object
key
additional properties