返回顶部
w

whatpeoplepayfor零工市场数据

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.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
95
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

whatpeoplepayfor

WhatPeoplePayFor

面向零工经济的Agent优先市场情报API。每月更新的Fiverr数据集,涵盖274个类别和17,000+个零工快照,可通过自然语言或结构化端点进行查询。

快速开始

安装

bash
clawhub install whatpeoplepayfor

配置

whatpeoplepayfor.com获取您的API密钥:

  1. 1. 使用Google账号注册
  2. 选择套餐(每月$19.90起,或一次性$99.90终身使用)
  3. 从入门页面复制您的API密钥

设置环境变量:

bash
export WPPAPIKEY=yourapikey_here

验证

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

您将看到您的访问状态、端点映射和可用数据月份。

本技能功能

本技能让您的AI代理能够访问每月更新的零工经济数据集。代理可以:

  • - 用自然语言提问,了解市场机会、趋势和需求
  • 发现增长机会,覆盖274个自由职业类别
  • 分析顶级订单和收入模式
  • 提取客户反复提及的痛点
  • 追踪单个零工随时间的变化趋势
  • 通过Focus系统每月保存并重新运行分析

身份验证

所有请求都需要Bearer令牌:

Authorization: Bearer $WPPAPIKEY

API基础URL

https://whatpeoplepayfor.com/api/agent

工作流程

1. 启动

始终从这里开始。确认您的密钥有效并返回端点映射。

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

2. 提问(主要入口点)

将自然语言转化为结构化市场分析:

bash
curl -s \
-X POST \
-H Authorization: Bearer $WPPAPIKEY \
-H Content-Type: application/json \
https://whatpeoplepayfor.com/api/agent/ask \
-d {
question: 本月增长最快的自由职业类别有哪些?,
saveFocus: true
}

响应包含:

  • - run.answer.summary — 自然语言回答
  • run.answer.supportingOrders — 证据数据
  • run.answer.topPainPoints — 需求信号
  • run.answer.recommendedFollowups — 建议的后续问题

示例问题:

  • - 帮我找到三月份增长最快的机遇
  • 这个机遇背后最强的订单是什么?
  • 商业计划中最常重复的痛点有哪些?

3. 使用查询端点深入分析

在ask确定了有前景的方向后,使用结构化查询:

可用月份:
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/query/months

月度统计:
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/query/stats?month=2026-03

类别汇总(按收入排序):
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/query/category-rollups?month=2026-03&sort=avg_revenue&limit=20

搜索快照:
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/query/snapshots?month=2026-03&category_slug=business-plans&limit=20

单个快照详情:
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/query/snapshot?snapshotid=ID>

追踪零工随时间变化:
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/query/gig-history?gigid=ID>&limit=12

聚合痛点:
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/query/pain-points?month=2026-03&q=plan&limit=20

4. Focus系统(保存并重新运行)

将有价值的分析保存为持久的Focus,可针对新的月度数据重新运行:

列出工作区:
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/workspaces

列出工作区中的Focus:
bash
curl -s -H Authorization: Bearer $WPPAPIKEY \
https://whatpeoplepayfor.com/api/agent/workspaces//focuses

重新运行Focus:
bash
curl -s -X POST \
-H Authorization: Bearer $WPPAPIKEY \
-H Content-Type: application/json \
https://whatpeoplepayfor.com/api/agent/focuses//run \
-d {}

5. SSE流式传输(可选)

用于增量数据消费:

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

查询策略

  • - 优先使用ask进行自然语言探索,然后使用查询端点深入分析
  • 每个会话使用一次bootstrap确认访问权限并发现可用数据
  • 在扫描原始快照之前使用stats和category-rollups
  • 寻找需求主题和重复客户信号时使用pain-points
  • 仅在缩小候选范围后使用snapshot和gig-history
  • 当代理需要跨会话连续性时使用focuses

端点映射

端点方法用途
/bootstrapGET发现端点并确认访问权限
/usage
GET | 检查API使用统计 | | /workspaces | GET | 列出工作区 | | /ask | POST | 自然语言市场分析 | | /workspaces/:id/focuses | GET | 列出保存的分析 | | /focuses/:id | GET | 读取保存的分析 | | /focuses/:id/run | POST | 重新运行保存的分析 | | /query/months | GET | 可用数据月份 | | /query/stats | GET | 月度摘要 | | /query/category-rollups | GET | 类别级分析 | | /query/snapshots | GET | 搜索零工快照 | | /query/snapshot | GET | 单个快照详情 | | /query/gig-history | GET | 追踪零工跨月变化 | | /query/pain-points | GET | 聚合客户痛点 | | /sse/snapshots | GET | 流式传输快照(SSE) | | /sse/category-rollups | GET | 流式传输类别汇总(SSE) |

安全性

  • - 所有数据访问都需要有效的WPPAPIKEY
  • 请求通过HTTPS发送到https://whatpeoplepayfor.com/api/agent
  • 数据不存储在本地;所有查询都访问远程API
  • 您的API密钥不会被记录或传输给第三方

常见错误

错误原因修复
401 缺少Bearer令牌无Authorization头添加Authorization: Bearer $WPPAPIKEY
401 无效API密钥
密钥无法识别 | 在whatpeoplepayfor.com检查密钥 | | 403 访问已停用 | 付款过期或密钥被撤销 | 续订订阅 | | 404 Focus未找到 | Focus已删除或用户错误 | 先列出Focus |

定价

套餐价格访问权限
月度$19.90/月完整API访问
终身
$99.90一次性 | 完整API访问,永久有效 |

whatpeoplepayfor.com注册

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 whatpeoplepayfor-1775993161 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 whatpeoplepayfor-1775993161 技能

通过命令行安装

skillhub install whatpeoplepayfor-1775993161

下载

⬇ 下载 whatpeoplepayfor v1.0.0(免费)

文件大小: 4.14 KB | 发布时间: 2026-4-13 12:35

v1.0.0 最新 2026-4-13 12:35
Initial release

Archiver·手机版·闲社网·闲社论坛·智能体自动化市场· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2026 闲社网·AI智能体论坛·AI自动化解决方案·http://xianshe.com

p2p_official_large