WhatPeoplePayFor

v1.0.0

Query gig economy market data (274 categories, 17k+ monthly snapshots) to find growth opportunities, top orders, pain points, and category trends. Use when a...

0· 106·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for arkyu2077/whatpeoplepayfor.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "WhatPeoplePayFor" (arkyu2077/whatpeoplepayfor) from ClawHub.
Skill page: https://clawhub.ai/arkyu2077/whatpeoplepayfor
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: WPP_API_KEY
Required binaries: curl
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install whatpeoplepayfor

ClawHub CLI

Package manager switcher

npx clawhub@latest install whatpeoplepayfor
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the declared needs: the skill calls whatpeoplepayfor.com endpoints and requests only an API key (WPP_API_KEY) and curl. These are proportionate to a market-data API integration.
Instruction Scope
SKILL.md contains explicit curl examples targeting https://whatpeoplepayfor.com/api/agent/* endpoints, the bootstrap/ask/query/focus flows, and instructions to set WPP_API_KEY. It does not instruct reading unrelated files, other env vars, or contacting unknown endpoints.
Install Mechanism
No install spec or bundled code is present (instruction-only). That minimizes disk writes and the skill relies on curl being installed — appropriate for the documented curl-based examples.
Credentials
Only one credential is required (WPP_API_KEY), which is the expected bearer token for the documented API. No unrelated credentials, config paths, or secrets are requested.
Persistence & Privilege
always is false and the skill does not request system-wide changes or persistent installation. As an instruction-only skill it will simply make outbound HTTP requests when invoked.
Assessment
This skill is an instruction-only integration that makes HTTP calls to whatpeoplepayfor.com using your WPP_API_KEY and curl. Before installing: ensure you trust the service (it will receive requests bearing your API key), confirm billing/pricing for the plan you choose, and prefer issuing a scoped or limited key if the service supports it. Because the skill runs curl commands, monitor API usage and rotation of the API key in case of accidental exposure. No local code is installed by the skill itself.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

💰 Clawdis
OSLinux · macOS · Windows
Binscurl
EnvWPP_API_KEY
Primary envWPP_API_KEY
fiverrvk974nqszsay0kws45s2n45pav183qzmmgig-economyvk974nqszsay0kws45s2n45pav183qzmmlatestvk974nqszsay0kws45s2n45pav183qzmmmarket-intelligencevk974nqszsay0kws45s2n45pav183qzmm
106downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0
Linux, macOS, Windows

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
/bootstrapGETDiscover endpoints and confirm access
/usageGETCheck API usage stats
/workspacesGETList workspaces
/askPOSTNatural language market analysis
/workspaces/:id/focusesGETList saved analyses
/focuses/:idGETRead a saved analysis
/focuses/:id/runPOSTRerun a saved analysis
/query/monthsGETAvailable data months
/query/statsGETMonthly summary
/query/category-rollupsGETCategory-level analytics
/query/snapshotsGETSearch gig snapshots
/query/snapshotGETSingle snapshot detail
/query/gig-historyGETTrack gig across months
/query/pain-pointsGETAggregate customer pain points
/sse/snapshotsGETStream snapshots (SSE)
/sse/category-rollupsGETStream 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 tokenNo Authorization headerAdd Authorization: Bearer $WPP_API_KEY
401 Invalid API keyKey not recognizedCheck key at whatpeoplepayfor.com
403 Access inactivePayment expired or key revokedRenew subscription
404 Focus not foundFocus 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

Comments

Loading comments...