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

whatpeoplepayforwhatpeoplepayfor 搜索

Agent Skill

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

总安装

3,326

周安装

140

GitHub Stars

公开资料未说明

下载量

1,165
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install whatpeoplepayfor

简介

查询零工经济市场数据寻找增长机会与热门类别趋势。

  • 覆盖 274 个职业分类与 17,000+ 月度快照数据集。
  • 支持按痛点、订单量或价格区间筛选细分领域。
  • 数据来源于公开调研与市场分析报告整合。whatpeoplepayfor 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可用于创业选题、竞品分析或行业洞察研究参考。

SKILL.md

name
whatpeoplepayfor
description
Query gig economy market data (274 categories, 17k+ monthly snapshots) to find growth opportunities, top orders, pain points, and category trends. Use when analyzing freelance market demand, discovering profitable niches, or monitoring gig economy trends.
version
1.0.0
metadata
openclaw
requires
env
bins
primaryEnv
WPP_API_KEY
emoji
\F4B0
homepage
https://whatpeoplepayfor.com
os
user-invocable
true

WhatPeoplePayFor

Agent-first market intelligence API for the gig economy. Monthly Fiverr dataset with 274 categories and 17,000+ gig snapshots, queryable via natural language or structured endpoints.

Quick Start

Install

clawhub install whatpeoplepayfor

Configure

Get your API key at whatpeoplepayfor.com:

  1. Sign up with Google
  2. Choose a plan (starts at $19.90/month, or $99.90 lifetime)
  3. Copy your API key from the getting-started page

Set the environment variable:

export WPP_API_KEY="your_api_key_here"

Verify

curl -s \
  -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/bootstrap"

You should see your access status, endpoint map, and available data months.

What This Skill Does

This skill gives your AI agent access to a monthly gig economy dataset. The agent can:

  • Ask natural language questions about market opportunities, trends, and demand
  • Discover growth opportunities across 274 freelance categories
  • Analyze top orders and revenue patterns
  • Extract pain points that customers repeatedly mention
  • Track individual gigs over time to spot trends
  • Save and rerun analyses monthly with the Focus system

Authentication

All requests require a bearer token:

Authorization: Bearer $WPP_API_KEY

API Base URL

https://whatpeoplepayfor.com/api/agent

Workflow

1. Bootstrap

Always start here. Confirms your key works and returns the endpoint map.

curl -s \
  -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/bootstrap"

2. Ask (primary entrypoint)

Turn natural language into structured market analysis:

curl -s \
  -X POST \
  -H "Authorization: Bearer $WPP_API_KEY" \
  -H "Content-Type: application/json" \
  "https://whatpeoplepayfor.com/api/agent/ask" \
  -d '{
    "question": "What are the fastest-growing freelance categories this month?",
    "saveFocus": true
  }'

The response includes:

  • run.answer.summary — natural language answer
  • run.answer.supportingOrders — evidence data
  • run.answer.topPainPoints — demand signals
  • run.answer.recommendedFollowups — suggested next questions

Example questions:

  • "Help me find the fastest-growing opportunity in March"
  • "What are the strongest orders behind that opportunity?"
  • "Which pain points repeat most often in business plans?"

3. Drill down with query endpoints

After ask identifies a promising angle, use structured queries:

Available months:

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/query/months"

Monthly stats:

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/query/stats?month=2026-03"

Category rollups (sorted by revenue):

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/query/category-rollups?month=2026-03&sort=avg_revenue&limit=20"

Search snapshots:

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/query/snapshots?month=2026-03&category_slug=business-plans&limit=20"

Single snapshot detail:

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/query/snapshot?snapshot_id=<SNAPSHOT_ID>"

Track a gig over time:

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/query/gig-history?gig_id=<GIG_ID>&limit=12"

Aggregate pain points:

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/query/pain-points?month=2026-03&q=plan&limit=20"

4. Focus system (save and rerun)

Save useful analyses as durable Focuses that can be rerun against new monthly data:

List workspaces:

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/workspaces"

List focuses in a workspace:

curl -s -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/workspaces/<WORKSPACE_ID>/focuses"

Rerun a focus:

curl -s -X POST \
  -H "Authorization: Bearer $WPP_API_KEY" \
  -H "Content-Type: application/json" \
  "https://whatpeoplepayfor.com/api/agent/focuses/<FOCUS_ID>/run" \
  -d '{}'

5. SSE streaming (optional)

For incremental row consumption:

curl -N -H "Authorization: Bearer $WPP_API_KEY" \
  "https://whatpeoplepayfor.com/api/agent/sse/category-rollups?month=2026-03"

Query Strategy

  • Prefer ask first for natural-language exploration, then drill down with query endpoints
  • Use bootstrap once per session to confirm access and discover available data
  • Use stats and category-rollups before scanning raw snapshots
  • Use pain-points when looking for demand themes and repeated customer signals
  • Use snapshot and gig-history only after narrowing candidates
  • Use focuses when the agent needs continuity across sessions

Endpoint Map

EndpointMethodPurpose
/bootstrapGETDiscover endpoints and confirm access
/usageGETCheck API usage stats
/workspacesGETList workspaces
/askPOSTNatural language market analysis
/workspaces/:id/focusesGETList saved analyses
/focuses/:idGETRead a saved analysis
/focuses/:id/runPOSTRerun a saved analysis
/query/monthsGETAvailable data months
/query/statsGETMonthly summary
/query/category-rollupsGETCategory-level analytics
/query/snapshotsGETSearch gig snapshots
/query/snapshotGETSingle snapshot detail
/query/gig-historyGETTrack gig across months
/query/pain-pointsGETAggregate customer pain points
/sse/snapshotsGETStream snapshots (SSE)
/sse/category-rollupsGETStream category rollups (SSE)

Security

  • All data access requires a valid WPP_API_KEY
  • Requests are sent to https://whatpeoplepayfor.com/api/agent over HTTPS
  • No data is stored locally; all queries hit the remote API
  • Your API key is never logged or transmitted to third parties

Common Errors

ErrorCauseFix
401 Missing bearer tokenNo Authorization headerAdd Authorization: Bearer $WPP_API_KEY
401 Invalid API keyKey not recognizedCheck key at whatpeoplepayfor.com
403 Access inactivePayment expired or key revokedRenew subscription
404 Focus not foundFocus deleted or wrong userList focuses first

Pricing

PlanPriceAccess
Monthly$19.90/moFull API access
Lifetime$99.90 one-timeFull API access, forever

Sign up at whatpeoplepayfor.com

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.57%
按下载量换算1,137

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills