Pinterest Search Users avatar
Pinterest Search Users

Pricing

$10.00/month + usage

Go to Apify Store
Pinterest Search Users

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

shareze

Maintained by Community

Actor stats

1

Bookmarked

3

Total users

1

Monthly active users

a month ago

Last modified

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

  1. The actor uses Playwright to search Pinterest for users matching your provided keyword(s).
  2. It retrieves basic user data, and if enabled, collects additional profile details (e.g., pin counts, board counts, website URLs).
  3. The output is returned as a structured JSON list of user profiles.

⚙️ Input Parameters

ParameterTypeRequiredDefaultDescription
keywordsstringThe keyword to search for users (e.g. "nike", "candle").
sizeinteger10The total number of users to return. Minimum: 1, Maximum: 50.
scrape_detailbooleantrueWhen 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

FieldTypeDescription
idstringInternal Pinterest user ID.
entityIdstringPinterest entity ID for the user.
usernamestringThe user’s Pinterest handle.
fullNamestringFull display name of the user.
imageUrlstringProfile image URL.
followerCountintegerTotal number of followers.
isVerifiedMerchantbooleanIndicates if the user is a verified merchant.
urlstringDirect link to the Pinterest profile.
createdAtstringAccount creation date (if available).
lastPinSaveTimestringTimestamp of the user’s most recent pin save.
descriptionstringUser’s bio or “About” section.
pinCountintegerTotal number of pins posted by the user.
boardCountintegerNumber of boards the user owns.
websiteUrlstringUser’s linked website, if available.