Pinterest Explorer πŸ“Œ avatar
Pinterest Explorer πŸ“Œ
Try for free

7 days trial then $30.00/month - No credit card required now

View all Actors
Pinterest Explorer πŸ“Œ

Pinterest Explorer πŸ“Œ

jupri/pinterest-explorer
Try for free

7 days trial then $30.00/month - No credit card required now

Scrape Pinterest.com

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4client = ApifyClient("<YOUR_API_TOKEN>")
5
6# Prepare the Actor input
7run_input = {
8    "query": [
9        "square pants",
10        "videos:yellow cat",
11        "products:web scraper",
12        "@microsoft/pins",
13        "@amazon/products",
14        "@nike/products",
15        "https://www.pinterest.com/pinterestindonesia",
16    ],
17    "limit": 5,
18    "dev_custom_cookies": [{
19            "key": "_pinterest_sess",
20            "value": "",
21        }],
22}
23
24# Run the Actor and wait for it to finish
25run = client.actor("jupri/pinterest-explorer").call(run_input=run_input)
26
27# Fetch and print Actor results from the run's dataset (if there are any)
28print("πŸ’Ύ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
29for item in client.dataset(run["defaultDatasetId"]).iterate_items():
30    print(item)
31
32# πŸ“š Want to learn more πŸ“–? Go to β†’ https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Community
Actor metrics
  • 13 monthly users
  • 1 star
  • 98.3% runs succeeded
  • Created in Jun 2023
  • Modified about 1 month ago