Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

keyapi-pinterest-analysiskeyapi pinterest 分析

Agent Skill

keyapi-pinterest-analysis 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,446

周安装

104

GitHub Stars

公开资料未说明

下载量

857
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:keyapi-pinterest-analysis(keyapi pinterest 分析)
来源仓库:https://github.com/lycici/keyapi-pinterest-analysis
安装命令:
openclaw skills install keyapi-pinterest-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install keyapi-pinterest-analysis

简介

用于检索 Pinterest 用户、图钉、图板及其关注关系,获取个人资料与合作信息。

  • 适合在 OpenClaw 中挖掘视觉灵感来源、竞品内容策略或影响者合作机会时使用。
  • 支持按关键词搜索用户与图板,提取公开数据并生成趋势洞察报告。
  • 安装命令:openclaw skills install keyapi-pinterest-analysis。
  • 注意遵守平台数据使用政策,避免高频请求导致访问受限。

SKILL.md

name
keyapi-pinterest-analysis
description
Discover and analyze Pinterest users, pins, boards, followers, and following — search users, retrieve profile information, explore pin libraries and board collections, and traverse follower/following networks.
metadata
{"openclaw":{"requires":{"env":["KEYAPI_TOKEN"],"bins":["node"]},"primaryEnv":"KEYAPI_TOKEN","emoji":"📌"}}
author
KeyAPI
license
MIT
repository
https://github.com/EchoSell/keyapi-skills

keyapi-pinterest-analysis

Discover and analyze Pinterest users, pins, boards, and social graphs — from profile lookup and content inventory to follower and following network traversal.

This skill provides comprehensive Pinterest user intelligence using the KeyAPI MCP service. It enables user search and profile retrieval, pin library exploration, board collection browsing, and follower/following network analysis — all through a unified, cache-first workflow.

Use this skill when you need to:

  • Search for Pinterest users by name or keyword
  • Retrieve a user's profile details, follower count, and bio
  • Browse a user's pin library
  • Explore a user's board collections
  • Traverse a user's follower list with cursor-based pagination
  • Analyze a user's following list with bookmark-based pagination

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Prerequisites

RequirementDetails
KEYAPI_TOKENA valid API token from keyapi.ai. Register at the site to obtain your free token. Set it as an environment variable: export KEYAPI_TOKEN=your_token_here
Node.jsv18 or higher
DependenciesRun npm install in the skill directory to install @modelcontextprotocol/sdk

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


MCP Server Configuration

All tool calls in this skill target the KeyAPI Pinterest MCP server:

Server URL : https://mcp.keyapi.ai/pinterest/mcp
Auth Header: Authorization: Bearer $KEYAPI_TOKEN

Setup (one-time):

# 1. Install dependencies
npm install

# 2. Set your API token (get one free at https://keyapi.ai/)
export KEYAPI_TOKEN=your_token_here

# 3. List all available tools to verify the connection
node scripts/run.js --platform pinterest --list-tools

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Analysis Scenarios

User NeedNode(s)Best For
Search users by name or keywordsearch_usersCreator discovery, influencer prospecting
User profile details and statsget_user_informationProfile audit, follower count, bio
User's pin libraryget_pinsContent inventory, pin theme analysis
User's board collectionsget_boardsBoard taxonomy, niche focus areas
Follower list with paginationget_followers_detailAudience sampling, follower network research
Following list with paginationget_following_detailInterest mapping, network affinity analysis

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Workflow

Step 1 — Identify Analysis Targets and Select Nodes

Clarify the research objective and map it to one or more nodes. Typical entry points:

  • User discovery: Use search_users with a keyword → select a target user.
  • Profile audit: Use get_user_information with username to retrieve profile details and extract the numeric userid.
  • Content inventory: Use get_pins + get_boards with username for a full content snapshot.
  • Social graph analysis: Use get_followers_detail + get_following_detail with userid for network traversal.
Two Parameter Naming Conventions Pinterest endpoints use different parameter names depending on the endpoint: | Parameter | Type | Used by | |---|---|---| | username | String (display name/handle) | search_users, get_user_information, get_pins | | entry | String (username or board path) | get_boards | | userid | Numeric string (e.g., 125186202050495625) | get_followers_detail, get_following_detail | Obtain the numeric userid from the get_user_information response before calling get_followers_detail or get_following_detail.
get_boardsentry Parameter get_boards uses an entry parameter (not username). This accepts a username (e.g., broadstbullycom) or a board URL path. Pass the username to retrieve all boards for that user.
get_followers_detail — Two Pagination Identifiers get_followers_detail uses two separate identifiers: - userid — the numeric user ID of the target user - node_id — an internal node identifier used with cursor for multi-page traversal For the first call, pass only userid. Subsequent pages require both node_id and cursor values from the previous response.
get_following_detailbookmark Pagination get_following_detail uses bookmark (not cursor) for pagination. Pass the bookmark value from the previous response to fetch the next page. Omit for the first call.

Step 2 — Retrieve API Schema

Before calling any node, inspect its input schema to confirm required parameters and available options:

node scripts/run.js --platform pinterest --schema <tool_name>

# Examples
node scripts/run.js --platform pinterest --schema get_user_information
node scripts/run.js --platform pinterest --schema get_followers_detail

Step 3 — Call APIs and Cache Results Locally

Execute tool calls and persist responses to the local cache to avoid redundant API calls.

Calling a tool:

# Single call with pretty output
node scripts/run.js --platform pinterest --tool <tool_name> \
  --params '<json_args>' --pretty

# Force fresh data, skip cache
node scripts/run.js --platform pinterest --tool <tool_name> \
  --params '<json_args>' --no-cache --pretty

Example — search users:

node scripts/run.js --platform pinterest --tool search_users \
  --params '{"username":"interior design"}' --pretty

Example — get user profile:

node scripts/run.js --platform pinterest --tool get_user_information \
  --params '{"username":"tastemade"}' --pretty

Example — get user pins:

node scripts/run.js --platform pinterest --tool get_pins \
  --params '{"username":"tastemade"}' --pretty

Example — get user boards:

node scripts/run.js --platform pinterest --tool get_boards \
  --params '{"entry":"tastemade"}' --pretty

Example — get followers (first page):

# Pass userid from get_user_information response
node scripts/run.js --platform pinterest --tool get_followers_detail \
  --params '{"userid":"125186202050495625"}' --pretty

Example — get followers (subsequent pages):

# Pass node_id and cursor from previous response
node scripts/run.js --platform pinterest --tool get_followers_detail \
  --params '{"userid":"125186202050495625","node_id":"987654321","cursor":"cursor_from_previous_response"}' --pretty

Example — get following (first page):

node scripts/run.js --platform pinterest --tool get_following_detail \
  --params '{"userid":"125186202050495625"}' --pretty

Example — get following (subsequent pages):

# Pass bookmark from previous response
node scripts/run.js --platform pinterest --tool get_following_detail \
  --params '{"userid":"125186202050495625","bookmark":"bookmark_from_previous_response"}' --pretty

Pagination reference:

EndpointPagination methodFirst callSubsequent pages
get_followers_detailcursor + node_idPass userid onlyPass userid + node_id + cursor from response
get_following_detailbookmarkPass userid onlyPass userid + bookmark from response
search_users, get_user_information, get_pins, get_boardsSingle-call or server-managed

Cache directory structure:

.keyapi-cache/
└── YYYY-MM-DD/
    ├── search_users/
    │   └── {params_hash}.json
    ├── get_user_information/
    │   └── {params_hash}.json
    ├── get_pins/
    │   └── {params_hash}.json
    ├── get_boards/
    │   └── {params_hash}.json
    ├── get_followers_detail/
    │   └── {params_hash}.json
    └── get_following_detail/
        └── {params_hash}.json

Cache-first policy:

Before every API call, check whether a cached result already exists for the given parameters. If a valid cache file exists, load from disk and skip the API call.

Step 4 — Synthesize and Report Findings

After collecting all API responses, produce a structured Pinterest intelligence report:

For user profile analysis:

  1. Profile Overview — Username, display name, numeric user ID, bio, follower count, following count, monthly views.
  2. Content Summary — Pin count, board count, content themes and categories.
  3. Board Taxonomy — Board names, pin counts per board, topic diversity.
  4. Pin Analysis — Pin type distribution (images, videos, articles), top engagement pins, recurring topics.

For social graph analysis:

  1. Follower Profile — Sample follower demographics, active categories, engagement signals.
  2. Following Footprint — Accounts followed, category interests, brand affiliations.
  3. Network Signals — Follower-to-following ratio, audience quality indicators.

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Common Rules

RuleDetail
get_boards uses entryPass the username as the entry parameter (not username). The parameter name differs from other endpoints.
userid resolutionget_followers_detail and get_following_detail require the numeric userid. Obtain it from get_user_information response.
get_followers_detail paginationFirst call: pass userid only. Subsequent calls: pass userid + node_id + cursor from the previous response.
get_following_detail paginationUses bookmark (not cursor) for pagination. Pass bookmark from the previous response.
Success checkcode = 0 → success. Any other value → failure. Always check the response code before processing data.
Retry on 500If code = 500, retry the identical request up to 3 times with a 2–3 second pause between attempts before reporting the error.
Cache firstAlways check the local .keyapi-cache/ directory before issuing a live API call.

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Error Handling

CodeMeaningAction
0SuccessContinue workflow normally
400Bad request — invalid or missing parametersCheck entry vs username vs userid usage; verify numeric userid format
401Unauthorized — token missing or expiredConfirm KEYAPI_TOKEN is set correctly; visit keyapi.ai to renew
403Forbidden — plan quota exceeded or feature restrictedReview plan limits at keyapi.ai
404Resource not found — user may not exist or account is privateVerify the username; private accounts may have restricted data
429Rate limit exceededWait 60 seconds, then retry
500Internal server errorRetry up to 3 times with a 2–3 second pause; if it persists, log the full request and response and skip this node
Other non-0Unexpected errorLog the full response body and surface the error message to the user

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.7%
按下载量换算717

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills