Check for Shortlink redirects.
$ npm install shortlink-checker
var checker = require('shortlink-checker');
checker(url).then((err, result) => {
if (err) console.log(err); //err will return if there's an error
else if (result) console.log(`Redirected link: ${result}`);
else console.log('Provided link doesn\'t redirect');
})