Install
openclaw skills install @arkyu2077/whatpeoplepayforQuery 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.
openclaw skills install @arkyu2077/whatpeoplepayforAgent-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.
clawhub install whatpeoplepayfor
Get your API key at whatpeoplepayfor.com:
Set the environment variable:
export WPP_API_KEY="your_api_key_here"
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.
This skill gives your AI agent access to a monthly gig economy dataset. The agent can:
All requests require a bearer token:
Authorization: Bearer $WPP_API_KEY
https://whatpeoplepayfor.com/api/agent
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"
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 answerrun.answer.supportingOrders — evidence datarun.answer.topPainPoints — demand signalsrun.answer.recommendedFollowups — suggested next questionsExample questions:
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"
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 '{}'
For incremental row consumption:
curl -N -H "Authorization: Bearer $WPP_API_KEY" \
"https://whatpeoplepayfor.com/api/agent/sse/category-rollups?month=2026-03"
ask first for natural-language exploration, then drill down with query endpointsbootstrap once per session to confirm access and discover available datastats and category-rollups before scanning raw snapshotspain-points when looking for demand themes and repeated customer signalssnapshot and gig-history only after narrowing candidatesfocuses when the agent needs continuity across sessions| Endpoint | Method | Purpose |
|---|---|---|
/bootstrap | GET | Discover endpoints and confirm access |
/usage | GET | Check API usage stats |
/workspaces | GET | List workspaces |
/ask | POST | Natural language market analysis |
/workspaces/:id/focuses | GET | List saved analyses |
/focuses/:id | GET | Read a saved analysis |
/focuses/:id/run | POST | Rerun a saved analysis |
/query/months | GET | Available data months |
/query/stats | GET | Monthly summary |
/query/category-rollups | GET | Category-level analytics |
/query/snapshots | GET | Search gig snapshots |
/query/snapshot | GET | Single snapshot detail |
/query/gig-history | GET | Track gig across months |
/query/pain-points | GET | Aggregate customer pain points |
/sse/snapshots | GET | Stream snapshots (SSE) |
/sse/category-rollups | GET | Stream category rollups (SSE) |
WPP_API_KEYhttps://whatpeoplepayfor.com/api/agent over HTTPS| Error | Cause | Fix |
|---|---|---|
401 Missing bearer token | No Authorization header | Add Authorization: Bearer $WPP_API_KEY |
401 Invalid API key | Key not recognized | Check key at whatpeoplepayfor.com |
403 Access inactive | Payment expired or key revoked | Renew subscription |
404 Focus not found | Focus deleted or wrong user | List focuses first |
| Plan | Price | Access |
|---|---|---|
| Monthly | $19.90/mo | Full API access |
| Lifetime | $99.90 one-time | Full API access, forever |
Sign up at whatpeoplepayfor.com