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.

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/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"
OpenClaw · Install into ~/.openclaw/skills/
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"
manifest: skills/arkyu2077/whatpeoplepayfor/SKILL.md
source content

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
/bootstrap
GETDiscover endpoints and confirm access
/usage
GETCheck API usage stats
/workspaces
GETList workspaces
/ask
POSTNatural language market analysis
/workspaces/:id/focuses
GETList saved analyses
/focuses/:id
GETRead a saved analysis
/focuses/:id/run
POSTRerun a saved analysis
/query/months
GETAvailable data months
/query/stats
GETMonthly summary
/query/category-rollups
GETCategory-level analytics
/query/snapshots
GETSearch gig snapshots
/query/snapshot
GETSingle snapshot detail
/query/gig-history
GETTrack gig across months
/query/pain-points
GETAggregate customer pain points
/sse/snapshots
GETStream snapshots (SSE)
/sse/category-rollups
GETStream 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 token
No Authorization headerAdd
Authorization: Bearer $WPP_API_KEY
401 Invalid API key
Key not recognizedCheck key at whatpeoplepayfor.com
403 Access inactive
Payment expired or key revokedRenew subscription
404 Focus not found
Focus 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