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

Welcome To Pinterest Explorer

don't be sad readme is here

About Pinterest.com

enter image description here

Pinterest is an American image sharing and social media service designed to enable saving and discovery of information (specifically "ideas")[6] on the internet using images, and on a smaller scale, animated GIFs and videos,[7] in the form of pinboards.[8] The site was created by Ben Silbermann, Paul Sciarra, and Evan Sharp, and had 450 million global monthly active users as of December 2022.[5] It is operated by Pinterest, Inc., based in San Francisco.

πŸ“Œ About This Actor

Use this Actor to scrape data from Pinterest.com, including profile, pins, boards, sections, search for pins visual similarity, etc.

Features :

  • ⭐ Scrape Profile, Pins, Boards, Section
  • ⭐ Scrape using URL
  • ⭐ Search for visual similarity (using URL)
  • ⭐ Sort images by similarity (coming soon)
  • ⭐ Generate Slide-Show
  • ⭐ Minimal input
  • ⭐ Fast like The Flash

πŸ“Œ HTTP Cookies

Some function may require a cookie value from your HTTP session. For example: products search, etc (see below). You may want to include additional HTTP cookie, for example your Login Cookie named _pinterest_sess (this is just example, use at your own risk!).

  • Login to Pinterest.com, and get cookie value named: _pinterest_sess from domain: https://www.pinterest.com
  • Open ☒️ Advanced Options then copy paste:

enter image description here

πŸ“Œ Input Parameters

ParameterTypeDescription
querystring arraySee below for possible query values
limitintegerNumber of results (per query)
gallerybooleanGenerate HTML gallery/viewer

πŸ“Œ Pinterest Query Language (PQL)

Common QUERY Syntax

[ [ <COMMAND:> | # | @ ] [ <NAME> | <ID> | <KEYWORD> ] [ / <SECTION> ] | <URL> ]

Possible QUERY values

FormatExampleResults
KEYWORDSwood furnitureSearch anything
KEYWORDSsquare pantsSearch pins
videos:KEYWORDSvideos:wooden chairsSearch videos
boards:KEYWORDSboards:yellow catsSearch boards
users:KEYWORDSusers:apifySearch users
products:KEYWORDSproducts:computerSearch products (cookie required)
#IDEA#art or #961238559656Scrape idea (topic/interest)
topic:IDEAtopic:961238559656
/info#art/infoTopic info and stats
/pins#art/pinsTopic related pins
/videos#art/videosTopic related videos
PIN1234567890Scrape pin (post) data
/info1234567890/infoPin info and stats
/related1234567890/relatedRelated pins
/comments1234567890/commentsPin comments
/visual1234567890/visualPin visual search
/products1234567890/productsPin related products (cookie required)
@USER@microsoftScrape user data
/info@microsoft/infoUser info
/followers@microsoft/followersUser followers
/following@microsoft/followingUser following
/pins@microsoft/pinsUser pins
/boards@walmart/boardsUser boards
/created@walmart/createdUser created pins
/products@amazon/productsUser (seller) products
@USER:BOARD@microsoft:travelBoard data
board:<BOARD_ID>board:120013001Board data (by board ID)
/infoboard:120013001/infoBoard info
/sectionsboard:120013001/sectionsBoard section (sub-folders)
/pinsboard:120013001/pinsBoard pins
/membersboard:120013001/membersBoard members (collaborators)
/followersboard:120013001/followersBoard followers
@USER:BOARD:SECTION@microsoft:travel:indiaSub-board data
section:<SECTION_ID>section:310002100Sub-board (by section ID)
/infosection:310002100/infoSub-board info
/pinssection:310002100/pinsSub-board pins
https:<PINTEREST_URL>https://*.pinterest.comAuto detect URL
/search/<TYPE>/?q=KEYWORDSearch for pins specific type
/ideas/<TOPIC>/<TOPIC_ID>Search specific topic/interest
/pin/<PIN>https://id.pinterest.com/pin/1234567890User pin related
/pin/<PIN>/visual-searchUser pin visual search
/<USER>https://id.pinterest.com/microsoftUser info
/<USER>/pinsUser pins
/<USER>/_createdUser created pins
/<USER>/_savedUser boards
/<USER>/<BOARD>Board pins
/<USER>/<BOARD>/<SECTION>Board sub-folder pins

πŸ“Œ Tutorial

Example #1: Searching

1# Searching pins
2{ "query": ["Window and Furniture"] }
1# Searching videos only
2{ "query": ["vidoes:Cat House"] }
1# Searching products
2{ "query": ["products:Square Pants"] }

Example #2: User Profile

1# User/profile info and stats
2{ "query": ["@microsoft/info"] }
1# User boards list
2{ "query": ["@microsoft/boards"] }
1# User products list
2{ "query": ["@amazon/products"] }

Example #3: Number of Results

1# use LIMIT to increase or limit number of results
2{ "query": ["@microsoft/pins"], "limit": 100 }

Example #4: Board and Section Pins

1# User Board pins
2{ "query": ["@microsoft:travel/pins"], "limit": 100 }
1# User Board may have sub-boards (sections)
2{ "query": ["@microsoft:travel:india/pins"], "limit": 100 }
1# For Board more detail info, use board:<BOARD_ID> 
2# use @USER/boards to get list of user boards and its ID
3{ "query": ["board:12300100002/info"] } 				# board info
4{ "query": ["board:12300100002/pins"], "limit": 100 } 	# board pins
1# board sub-folders list
2{ "query": ["board:12300100002/sections"], "limit": 100 }

Example #5: Pin Info

1# Pin info and statistics 
2{ "query": ["1234567890/info"] }
1# Pin related 
2{ "query": ["1234567890/related"], "limit": 50 }
1# Pin comments
2{ "query": ["1234567890/comments"], "limit": 50 }

Example #6: URL

1# As last resort, you can copy and paste an URL
2{ "query": ["https://id.pinterest.com/microsoft/"] }

Example #7: Multiple Queries

1# multiple user info
2{ 
3	"query": [
4		"@google/info",
5		"@walmart/info",
6		"@apify/info"
7	]
8}
1# multiple user pins
2{ 
3	"query": [
4		"@amazon/products",
5		"@walmart/products",
6		"@nike/products",
7		"@apify/pins",
8		"videos:yellow cat"
9	],
10	"limit": 10 # 10 results per-query
11}
1# Different query may have different attributes set. 
2# You can combine different type of query in a single request but not recommended.  
3{ 
4	"query": [
5		"@google/info",			
6		"120000199922/info", 	
7		"#art/info"
8	]
9}

πŸ“Œ Output Samples

Sample #1: JSON Output

1{
2    "board": {
3        "name": "LΖ°u nhanh",
4        "url": "/bch7946/_quick_saves/"
5    },
6    "created_at": "Tue, 14 Mar 2023 15:23:53 +0000",
7    "domain": "tracking.feedpress.it",
8    "grid_title": "Microsoft Ads Introduces Cookie-Based Experiment Feature",
9    "id": "1066438386741918409",
10    "image_crop": {
11        "max_y": 1
12    },
13    "image_signature": "1cc0030a7989dbcfe3b6b58d0f06f58c",
14    "images": {
15        "170x": {
16            "height": 123,
17            "url": "https://i.pinimg.com/236x/1c/c0/03/1cc0030a7989dbcfe3b6b58d0f06f58c.jpg",
18            "width": 236
19        },
20        "236x": {
21            "height": 123,
22            "url": "https://i.pinimg.com/236x/1c/c0/03/1cc0030a7989dbcfe3b6b58d0f06f58c.jpg",
23            "width": 236
24        },
25        "474x": {
26            "height": 248,
27            "url": "https://i.pinimg.com/474x/1c/c0/03/1cc0030a7989dbcfe3b6b58d0f06f58c.jpg",
28            "width": 474
29        },
30        "736x": {
31            "height": 386,
32            "url": "https://i.pinimg.com/736x/1c/c0/03/1cc0030a7989dbcfe3b6b58d0f06f58c.jpg",
33            "width": 736
34        },
35        "orig": {
36            "height": 840,
37            "url": "https://i.pinimg.com/originals/1c/c0/03/1cc0030a7989dbcfe3b6b58d0f06f58c.png",
38            "width": 1600
39        }
40    },
41    "is_uploaded": true,
42    "link": "http://tracking.feedpress.it/link/13962/13489926",
43    "pinner": {
44        "full_name": "TrΓ’m BΓ­ch",
45        "id": "1066438524171071800",
46        "image_large_url": "https://s.pinimg.com/images/user/default_140.png",
47        "image_medium_url": "https://s.pinimg.com/images/user/default_75.png",
48        "image_small_url": "https://s.pinimg.com/images/user/default_30.png",
49        "username": "bch7946"
50    },
51    "reaction_counts": {
52        "1": 1
53    },
54    "rich_summary": {
55        "display_description": "Microsoft Ads added an additional feature to the Experiment functionality launched last July: cookie-based audience specifications.",
56        "display_name": "Microsoft Ads Introduces Cookie-Based Experiment Feature",
57        "favicon_images": {
58            "orig": "https://i.pinimg.com/favicons/e4793202be714776e9ec57cd8452dea6839302dcaf946ff7c8a69e07.png?9292791bfd447d72ea6e3c05a904eb89"
59        },
60        "favicon_link": "https://i.pinimg.com/favicons/e4793202be714776e9ec57cd8452dea6839302dcaf946ff7c8a69e07.png?9292791bfd447d72ea6e3c05a904eb89",
61        "id": "0c15d83843dccc4039dbbb3091133efd",
62        "site_name": "Search Engine Journal",
63        "type": "richpingriddata",
64        "type_name": "article",
65        "url": "http://tracking.feedpress.it/link/13962/13489926"
66    },
67    "type": "pin"
68}

enter image description here

πŸ“Œ Support

  • ⚑️ Congratulation! you have mastered "How to scrape Pinterest using APIFY Pinterest Explorer"
  • ⚑️ Feel free to reach out to the developer for any issues or suggestions for improvement.
Developer
Maintained by Community
Actor metrics
  • 13 monthly users
  • 1 star
  • 98.3% runs succeeded
  • Created in Jun 2023
  • Modified about 1 month ago