Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 543 Bytes

File metadata and controls

30 lines (25 loc) · 543 Bytes

Pinterest API Scrapper

Install

yarn add git:DentaCH/pinterest-api
cd node_modules/pinterest-api
npm build

Example

Search Keyword

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)
})();