Pinterest API Scrapper
yarn add git:DentaCH/pinterest-api
cd node_modules/pinterest-api
npm build
Search for pinterest pins by keyword:
import { Pinterest } from 'pinterest-api';
const pinterest = new Pinterest();
(async () => {
const result = await pinterest.search.keyword('cat')
console.log(result)
})();