var http = new Http();
http.setMethod("GET");
http.setUrl("https://telaruma.com/api/v1/content.cfc?method=index&brand_id=101&platform=instagram");
http.addParam(type="header", name="Authorization", value="Bearer YOUR_API_KEY");
var res = deserializeJson(http.send().getPrefix().fileContent);
writeDump(res);
import requests
res = requests.get('https://telaruma.com/api/v1/content.cfc?method=index&brand_id=101&platform=instagram', headers={'Authorization': 'Bearer YOUR_API_KEY'})
print(res.json())