Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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));
Source by docs.streamelements.com #
 
PREVIOUS NEXT
Tagged: #api #streamelements #watchtime
ADD COMMENT
Topic
Name
4+7 =