This API allows you to submit a picture and it will return the picture with all the faces pixelated. It provides privacy.
To utilize unirest for node.js install the the npm module:
$ npm install unirest
After installing the npm package you can now start simplifying requests like so:
var unirest = require('unirest');
unirest.post("https://zyanyatech1-pixelate-faces-from-photos-v1.p.rapidapi.com/api/pixelate") .header("X-RapidAPI-Key", "undefined") .header("Content-Type", "undefined") .send({"src":"https://taosvhdstorage.blob.core.windows.net/attr/images/article/large/gli.jpg"}) .end(function (result) { console.log(result.status, result.headers, result.body); });