Pinterest Search Users
Pricing
$10.00/month + usage
Go to Apify Store

Pinterest Search Users
A powerful Pinterest user search tool that helps you find and collect detailed profile data based on keywords. It returns key insights like follower count, pin and board statistics, bio, and website links โ ideal for influencer research, market analysis, and audience discovery.
Pricing
$10.00/month + usage
Rating
0.0
(0)
Developer

shareze
Maintained by Community
Actor stats
1
Bookmarked
3
Total users
2
Monthly active users
2 days ago
Last modified
Categories
Share
๐งฉ Pinterest Search Users
This Apify actor allows you to search Pinterest users by keywords and optionally scrape detailed profile information for each user. Itโs perfect for lead generation, influencer research, or market trend analysis.
๐ How It Works
- The actor uses Playwright to search Pinterest for users matching your provided keyword(s).
- It retrieves basic user data, and if enabled, collects additional profile details (e.g., pin counts, board counts, website URLs).
- The output is returned as a structured JSON list of user profiles.
โ๏ธ Input Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| keywords | string | โ | โ | The keyword to search for users (e.g. "nike", "candle"). |
| size | integer | โ | 10 | The total number of users to return. Minimum: 1, Maximum: 50. |
| scrape_detail | boolean | โ | true | When enabled, fetches more detailed profile info. May increase scraping time. |
Example Input
{"keywords": "candle","size": 15,"scrape_detail": true}
๐ฆ Output Structure
Each result in the dataset will follow this structure:
{"id": "1234567890","entityId": "987654321","username": "example_user","fullName": "Example User","imageUrl": "https://i.pinimg.com/avatars/example_user_140.jpg","followerCount": 5234,"isVerifiedMerchant": false,"url": "https://www.pinterest.com/example_user/","createdAt": "2023-04-10T12:45:00Z","lastPinSaveTime": "2023-06-02T15:30:00Z","description": "Lifestyle blogger and candle enthusiast โจ","pinCount": 134,"boardCount": 12,"websiteUrl": "https://example.com"}
๐ง Field Description
| Field | Type | Description |
|---|---|---|
| id | string | Internal Pinterest user ID. |
| entityId | string | Pinterest entity ID for the user. |
| username | string | The userโs Pinterest handle. |
| fullName | string | Full display name of the user. |
| imageUrl | string | Profile image URL. |
| followerCount | integer | Total number of followers. |
| isVerifiedMerchant | boolean | Indicates if the user is a verified merchant. |
| url | string | Direct link to the Pinterest profile. |
| createdAt | string | Account creation date (if available). |
| lastPinSaveTime | string | Timestamp of the userโs most recent pin save. |
| description | string | Userโs bio or โAboutโ section. |
| pinCount | integer | Total number of pins posted by the user. |
| boardCount | integer | Number of boards the user owns. |
| websiteUrl | string | Userโs linked website, if available. |