Answers for "api streamelements watchtime"

0

api streamelements watchtime

const fetch = require('node-fetch');

const url = 'https://api.streamelements.com/kappa/v2/points//watchtime';

const options = {method: 'GET', headers: {Accept: 'application/json'}};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
Posted by: Guest on April-14-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language