Moz Link API wrapper written in javascript for node applications (can also run in the browser). Fetch link data and other metrics from various endpoints, including Url Metrics, Top Page Metrics, and others. The Link API is a paid plan, they offer a limited free version to the API as well.
npm install --save moz-api
Sending requests directly to the api is tedious with the various bit masks that needs to be calculated for filtering as well as signing the request for authentication. We also didn't find any currently maintained projects available. This seemed like a good opportunity to build a simple to use interface.
var Moz = require('moz')
// initialize and configure client
const moz = new Moz({
accessId: ACCESS_ID,
secretKey: SECRET_KEY
});
// fetch url metrics for moz.com
// return promise
moz.urlMetrics
.fetch('moz.com', {
cols: ['Title', 'Domain Authority'],
})
.then((response) => {
console.log(response.data)
})
.catch((error) => {
console.error(error.response.data)
})
This library is licensed under MIT. See LICENSE.