body={
audio:options.audio.file_url,
performer:options.audio.author,//sample_artist
title:options.audio.title//sample_title
}
fetch(url,{
method:"post",
body:JSON.stringify(body),
headers: { 'Content-Type': 'application/json' }
})