Skills 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.
git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/arkyu2077/whatpeoplepayfor" ~/.claude/skills/openclaw-skills-whatpeoplepayfor && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/arkyu2077/whatpeoplepayfor" ~/.openclaw/skills/openclaw-skills-whatpeoplepayfor && rm -rf "$T"
skills/arkyu2077/whatpeoplepayfor/SKILL.mdWhatPeoplePayFor
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:
- Sign up with Google
- Choose a plan (starts at $19.90/month, or $99.90 lifetime)
- 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:
— natural language answerrun.answer.summary
— evidence datarun.answer.supportingOrders
— demand signalsrun.answer.topPainPoints
— suggested next questionsrun.answer.recommendedFollowups
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
first for natural-language exploration, then drill down with query endpointsask - Use
once per session to confirm access and discover available databootstrap - Use
andstats
before scanning raw snapshotscategory-rollups - Use
when looking for demand themes and repeated customer signalspain-points - Use
andsnapshot
only after narrowing candidatesgig-history - Use
when the agent needs continuity across sessionsfocuses
Endpoint Map
| Endpoint | Method | Purpose |
|---|---|---|
| GET | Discover endpoints and confirm access |
| GET | Check API usage stats |
| GET | List workspaces |
| POST | Natural language market analysis |
| GET | List saved analyses |
| GET | Read a saved analysis |
| POST | Rerun a saved analysis |
| GET | Available data months |
| GET | Monthly summary |
| GET | Category-level analytics |
| GET | Search gig snapshots |
| GET | Single snapshot detail |
| GET | Track gig across months |
| GET | Aggregate customer pain points |
| GET | Stream snapshots (SSE) |
| GET | Stream category rollups (SSE) |
Security
- All data access requires a valid
WPP_API_KEY - Requests are sent to
over HTTPShttps://whatpeoplepayfor.com/api/agent - No data is stored locally; all queries hit the remote API
- Your API key is never logged or transmitted to third parties
Common Errors
| Error | Cause | Fix |
|---|---|---|
| No Authorization header | Add |
| Key not recognized | Check key at whatpeoplepayfor.com |
| Payment expired or key revoked | Renew subscription |
| 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