Head request for all published Audio
Deprecated
HEAD
/audio
const url = 'https://app.mediamanager.io/api/v1/audio';const options = {method: 'HEAD'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request HEAD \ --url https://app.mediamanager.io/api/v1/audioReturn an empty response from the endpoint with the same headers as GET
This is a deprecated endpoint and will be removed. Please use /media?filter[audio]=true instead.
Responses
Section titled “ Responses ”Get the response head which should contain no body