Skip to main content

SE::Pinterest::Suggest - Pinterest Suggest Scraper

Scraper Overview

Scraper for search suggestions by keywords on Pinterest. The Pinterest suggestions scraper solves one of the main SEO tasks, namely the fast automated gathering of an extended semantic core. With the SE::Pinterest::Suggest scraper, you can automatically collect keyword databases from Pinterest search engine suggestions by query. Using the SE::Pinterest::Suggest scraper, you can easily and quickly scrape Pinterest suggestions by query.

Thanks to the multithreading capabilities of A-Parser, the processing speed can reach 6000 queries per minute, which on average allows obtaining up to 16000 results per minute.

Overview: speed of operation

You can use automatic query multiplication, substitution of subqueries from files, iteration of alphanumeric combinations and lists to get the maximum possible number of results. Using result filtering, you can immediately clean up the result by removing all unnecessary junk (using negative keywords).

A-Parser functionality allows you to save the scraping settings of the SE::Pinterest::Suggest scraper for further use (presets), set a scraping schedule, and much more.

Saving results is possible in the form and structure you need, thanks to the built-in powerful templating engine Template Toolkit, which allows you to apply additional logic to the results and output data in various formats, including JSON, SQL, and CSV.

Collected Data

  • Query suggestions
  • Type of suggestions

what data does the SE::Pinterest::Suggest scraper collect

Capabilities

  • Deep parsing using the Parse to Level feature
  • Selection of the type of suggestions that will be used for substitution when parsing in depth

Use Cases

  • Gathering keyword databases

Queries

As queries, you need to specify search phrases, for example:

write essay
Football
Waterfall
Speak in english
Cats and dogs
forex
cheap essay

Query Substitutions

You can use built-in macros for automatic substitution of subqueries from files, for example, we want to add some list of other words to each query, let's specify several main queries:

essay
article
thesis

In the query format, we will specify a macro for substitution of additional words from the file Keywords.txt, this method allows to increase the variability of queries many times over:

{subs:Keywords} $query 

This macro will create as many additional queries as there are in the file for each original search query, which in total will give [number of original queries(domains)] x [number of queries in the Keywords file] = [total number of queries] as a result of the macro's work.

For example, if the file Keywords.txt contains:

buy
cheap

As a result, the substitution macro will turn 3 main queries into 6:

buy essay
cheap essay
buy article
cheap article
buy thesis
cheap thesis

Output Results Examples

A-Parser supports flexible result formatting thanks to the built-in templating engine Template Toolkit, which allows it to output results in any form, as well as in structured formats, such as CSV or JSON

Exporting the List of Suggestions

Similar to SE::Google::Suggest

Output in a CSV Table

Similar to SE::Google::Suggest

Keyword competition

Similar to SE::Google

Saving in SQL format

Result format:

[% FOREACH results;
"INSERT INTO serp VALUES('" _ query _ "', '"; suggest _ "')\n";
END %]

Example of result:

INSERT INTO serp VALUES('write essay', 'write essay for me')
INSERT INTO serp VALUES('write essay', 'write essay online')
INSERT INTO serp VALUES('write essay', 'write essay for you')
INSERT INTO serp VALUES('write essay', 'write essay free')
INSERT INTO serp VALUES('write essay', 'write essays')
INSERT INTO serp VALUES('write essay', 'write essay conclusion')
INSERT INTO serp VALUES('write essay', 'write essay on covid 19')
INSERT INTO serp VALUES('write essay', 'write essay today')
INSERT INTO serp VALUES('write essay', 'write essays for money')
INSERT INTO serp VALUES('write essay', 'write essay online for free')
...

Dumping results to JSON

Similar to SE::Google::Suggest

Processing results

A-Parser allows you to process results directly during scraping, in this section we have provided the most popular cases for the scraper SE::Pinterest::Suggest

Parse to level option

Similar to SE::Google::Suggest

Filtering results (using negative keywords)

Similar to SE::Google::Suggest

Possible settings

Parameter nameDefault valueDescription
Follow suggestsAllSelection of the type of suggestions that will be used for substitution during deep scraping