WhatPeoplePayFor
name: whatpeoplepayfor
by arkyu2077 · published 2026-04-01
$ claw add gh:arkyu2077/arkyu2077-whatpeoplepayfor---
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:
- WPP_API_KEY
bins:
- curl
primaryEnv: WPP_API_KEY
emoji: "\U0001F4B0"
homepage: https://whatpeoplepayfor.com
os:
- linux
- darwin
- windows
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 whatpeoplepayforConfigure
Get your API key at [whatpeoplepayfor.com](https://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:
Authentication
All requests require a bearer token:
Authorization: Bearer $WPP_API_KEYAPI Base URL
https://whatpeoplepayfor.com/api/agentWorkflow
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:
Example questions:
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
Endpoint Map
| 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) |
Security
Common Errors
| 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 |
Pricing
| Plan | Price | Access |
|------|-------|--------|
| Monthly | $19.90/mo | Full API access |
| Lifetime | $99.90 one-time | Full API access, forever |
Sign up at [whatpeoplepayfor.com](https://whatpeoplepayfor.com)
More tools from the same signal band
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
Sign plugins, rotate agent credentials without losing identity, and publicly attest to plugin behavior with verifiable claims and authenticated transfers.
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your...