Pinterest Keywords Discovery Tool avatar

Pinterest Keywords Discovery Tool

Pricing

from $0.40 / 1,000 pinterest keyword suggestions

Go to Apify Store
Pinterest Keywords Discovery Tool

Pinterest Keywords Discovery Tool

Discover Pinterest keyword suggestions from autocomplete data. Enter a seed keyword and extract related search phrases for SEO, trend research, content planning, ads, and Pinterest scraper workflows. Export as JSON, CSV, Excel.

Pricing

from $0.40 / 1,000 pinterest keyword suggestions

Rating

0.0

(0)

Developer

ParseBird

ParseBird

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Pinterest Keywords Discovery Tool

Pinterest Keywords Discovery Tool extracts related keyword suggestions from Pinterest autocomplete for a seed keyword, helping you find Pinterest search phrases for SEO, trend research, content planning, ads, and scraper workflows.

Enter one Pinterest keyword and get structured autocomplete suggestions that reveal related searches, content angles, audience interests, and long-tail keyword ideas.

ParseBird Pinterest Suite   •  Search, profile, keyword, and image data tools
 Pinterest Search Scraper
Keyword search results
 Pinterest Profile Scraper
Profile metadata
 Pinterest Keywords Discovery Tool
➤ You are here
 Pinterest Image Downloader
Image URLs

Copy to your AI assistant

Copy this block into ChatGPT, Claude, Cursor, or any LLM to start using this actor.

Use Apify Actor parsebird/pinterest-keywords-discovery-tool to discover Pinterest autocomplete keyword suggestions. Example with ApifyClient: client.actor("parsebird/pinterest-keywords-discovery-tool").call(run_input={"keyword":"space"}). Inputs: keyword string required default "fashion". Output fields: keyword, type, item. API docs: https://docs.apify.com/api/client/python/ and https://docs.apify.com/api/client/js/. Token: https://console.apify.com/account/integrations.

What is Pinterest Keywords Discovery Tool?

Pinterest Keywords Discovery Tool is a Pinterest keyword scraper and Pinterest API alternative for collecting autocomplete suggestions from a seed keyword. Enter a topic such as fashion or space, and the actor returns related Pinterest search phrases in a clean dataset.

Use it before running a Pinterest scraper, building a content calendar, researching Pinterest SEO, or mapping long-tail search ideas.

What can Pinterest Keywords Discovery Tool do?

  • Discover Pinterest autocomplete suggestions for one seed keyword.
  • Extract related long-tail keyword phrases such as fashion outfits or space wallpaper.
  • Return a simple dataset with the seed keyword, suggestion type, and suggestion text.
  • Run on demand or on a schedule with Apify schedules.
  • Connect keyword datasets to the Apify API, webhooks, and integrations.
  • Export Pinterest keyword data as JSON, CSV, Excel, HTML, XML, or RSS from Apify datasets.

What data can you extract from Pinterest keyword suggestions?

FieldDescription
keywordOriginal seed keyword used for discovery
typeResult type, currently suggestion
itemPinterest autocomplete keyword suggestion

How to discover Pinterest keywords

  1. Open Pinterest Keywords Discovery Tool on Apify.
  2. Enter a seed keyword, for example space.
  3. Run the actor.
  4. Open the default dataset to review Pinterest keyword suggestions.
  5. Export the results as JSON, CSV, Excel, or connect them to another workflow through the Apify API.

Input parameters

ParameterTypeRequiredDefaultDescription
keywordstringYesfashionSeed keyword to search for on Pinterest

Input / Output

Example input:

{
"keyword": "space"
}

Example output:

[
{
"keyword": "fashion",
"type": "suggestion",
"item": "fashion outfits"
},
{
"keyword": "fashion",
"type": "suggestion",
"item": "fashion brand"
}
]

Download results in JSON, CSV, Excel, HTML, XML, or RSS from the Apify dataset.

Python API example

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("parsebird/pinterest-keywords-discovery-tool").call(run_input={
"keyword": "space",
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript API example

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('parsebird/pinterest-keywords-discovery-tool').call({
keyword: 'space',
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

See Apify's official Python client and JavaScript client documentation for more options.

How much does it cost to discover Pinterest keywords?

What is the price per Pinterest keyword suggestion?

EventFree, Bronze, SilverGold
suggestion-discovered$0.0006 per suggestion ($0.60 / 1,000)$0.0004 per suggestion ($0.40 / 1,000)

Each suggestion-discovered event means one Pinterest keyword suggestion was extracted and pushed to the dataset. A run with 1,000 suggestions costs $0.60 on Free, Bronze, and Silver plans, or $0.40 on Gold. Apify free trial credits may cover test runs where applicable.

Use cases

  • Find Pinterest SEO keywords before publishing pins, boards, or blog content.
  • Build seed lists for Pinterest Search Scraper runs.
  • Research visual trends, seasonal ideas, and audience language.
  • Collect keyword ideas for ads, content briefs, or spreadsheet analysis.
  • Feed Pinterest keyword suggestions into BI tools, databases, or automation workflows.

How it works

  1. The actor validates the seed keyword.
  2. It requests Pinterest autocomplete suggestions with browser-like headers.
  3. It deduplicates returned suggestions.
  4. It pushes one dataset item per keyword suggestion.
  5. It charges one PPE event per saved suggestion on the Apify platform and stops if the spending limit is reached.

Is scraping Pinterest autocomplete data legal?

Scraping publicly available web data is generally allowed in many jurisdictions, but you should review Pinterest's terms and make sure your use case complies with applicable laws. For more background, read Apify's guide: Is web scraping legal?.

ActorStatusBest for
Pinterest Search ScraperAvailableKeyword search results, pins, pinners, and image URLs
Pinterest Profile ScraperAvailablePublic profile metadata by username
Pinterest Keywords Discovery ToolAvailablePinterest keyword and autocomplete research
Pinterest Image DownloaderAvailablePinterest pin image URLs and media variants

More ParseBird actors:

FAQ

Can I schedule recurring Pinterest keyword discovery?

Yes. Use Apify schedules to run the actor hourly, daily, weekly, or at a custom interval.

Can I use this as a Pinterest keyword API?

Yes. Start runs and fetch datasets through the Apify API, Python client, JavaScript client, webhooks, or integrations.

Why are there fewer suggestions than expected?

Pinterest controls how many autocomplete suggestions are returned for each seed keyword. Some topics return more suggestions than others.

Can I use these suggestions with Pinterest Search Scraper?

Yes. Use suggestions from this actor as query values in Pinterest Search Scraper.

Where can I report issues or request fields?

Open the Issues tab on the actor page and include your input example, run ID, and the fields you expected.