Actions59
- Facebook Actions
- Facebook Ad Library Actions
- Google Ad Library Actions
- Google Search Actions
- Instagram Actions
- LinkedIn Actions
- LinkedIn Ad Library Actions
- Pinterest Actions
- Reddit Actions
- Thread Actions
- TikTok Actions
- Truth Social Actions
- Twitter (X) Actions
- YouTube Actions
Overview
The node "Scrape Creators" provides real-time social media data scraping capabilities across multiple platforms, including Pinterest. Specifically, the "Get Pinterest User Boards" operation retrieves a list of boards belonging to a specified Pinterest user by their handle. This is useful for scenarios such as market research, content aggregation, competitor analysis, or social media monitoring where you want to gather public board information from Pinterest users.
For example, you can input a Pinterest user's handle and get up to a specified number of their public boards, which can then be used to analyze their interests, content themes, or trends they follow.
Properties
| Name | Meaning |
|---|---|
| Handle | The unique identifier (handle) of the Pinterest user whose boards you want to retrieve. Example: "broadstbullycom" from the URL https://www.pinterest.com/broadstbullycom/ |
| Limit | The maximum number of boards to return in the response. This controls how many results are fetched, with a default of 50. |
Output
The output contains a JSON array of Pinterest boards associated with the specified user handle. Each item in the array represents a single board with details such as its name, description, and other metadata provided by the scraping API.
If the node supports binary data output, it would typically relate to images or media associated with the boards, but based on the provided code and properties, the primary output is structured JSON data representing the boards.
Dependencies
- Requires an API key credential for authentication with the Scrape Creators API service.
- The node makes HTTP requests to
https://api.scrapecreators.comwith appropriate headers including the API key. - No additional environment variables or configurations are explicitly required beyond providing the API key credential.
Troubleshooting
Common issues:
- Invalid or missing API key will result in authentication errors.
- Providing an incorrect or non-existent Pinterest handle may return empty results or errors indicating the user was not found.
- Exceeding the allowed limit or rate limits imposed by the API could cause request failures.
Error messages:
- Authentication errors usually indicate problems with the API key; ensure the key is valid and correctly configured.
- "User not found" or similar messages suggest the handle does not exist or is private.
- Network or timeout errors might require checking connectivity or retrying later.
Links and References
- Pinterest User Profile URL Format
- Scrape Creators API Documentation (general reference, actual docs may require login)
- n8n Documentation on Credentials (for setting up API keys)