get https://api.datafiniti.co/v4/targeted-updates
View created real-time updates
Log in to see full request history
Guide: Real-time Data Requests
Responses
View created real-time updates
xxxxxxxxxx
26const axios = require('axios');
const DF_TOKEN = "INPUT YOUR DF TOKEN HERE";
(async () => {
const dfAPI = axios.create({
baseURL: 'https://api.datafiniti.co/v4',
headers: {
'Authorization': `Bearer ${DF_TOKEN}`,
'Content-type': 'application/json'
}
})
try {
const resp = await dfAPI.get('/targeted-updates');
console.log(JSON.stringify(resp.data, null, 4));
} catch (error) {
const { response } = error;
if (response) {
console.log(`Error ${(response.status)} Error: ${JSON.stringify(response.data, null, 4)}`);
} else {
console.log(`Error: ${error.stack}`);
}
}
})();
Try It!
to start a request and see the response here! Or choose an example: