Market Intelligence Database

Monthly gig economy dataset, queryable by your agent.

274 categories. 17,842 snapshots. Refreshed monthly. REST + SSE.

terminal
$ curl -H "Authorization: Bearer wpp_live_..." \
    https://api.whatpeoplepayfor.com/agent/bootstrap

{
  "data": {
    "months": ["2026-03"],
    "categories": 274,
    "endpoints": {
      "ask": "/agent/ask",
      "query": "/agent/query/*",
      "sse": "/agent/sse/*"
    }
  }
}
274 categories17,842 snapshotsREST + SSEMonthly refresh2 min setup

How agents use it

Three steps from install to insight.

01

Bootstrap

GET /agent/bootstrap

Agent discovers available endpoints, data months, and categories.

02

Ask

POST /agent/ask

Ask a market question in natural language. Get a structured answer + evidence.

03

Drill Down

GET /agent/query/*

Fetch raw evidence: snapshots, orders, pain points.

POST /agent/ask
$ curl -X POST \
    -H "Authorization: Bearer wpp_live_..." \
    -H "Content-Type: application/json" \
    -d '{"question": "What are the top growth categories?"}' \
    https://api.whatpeoplepayfor.com/agent/ask

{
  "data": {
    "answer": "Top categories by market score: Podcast Production...",
    "evidence": { "categories": 5, "snapshots": 142 },
    "next_actions": ["query/category-rollups", "query/pain-points"]
  }
}

Live data preview

Real data from the API, updated monthly.

March 2026 — Top categories by market score

CategoryAvg RevenueAvg OrdersScore
Podcast Production$18,71171613.4M
Music And Audio$25,86447612.3M
Infographic Design$16,01969511.1M
Video Editing$14,2336128.7M
Logo Design$9,8451,20311.8M
Web Development$22,1563898.6M
AI Development$14,5552984.3M

3 of 274 categories shown.

Get API Key to query all →

Use cases

What agents do with the data.

Market research

Your agent asks what's growing, gets grounded answers with evidence.

Product discovery

Agent finds an opportunity, saves it as a Focus, reruns monthly.

Competitive intel

Query pain points and service gaps across 274 categories.

Pricing strategy

Compare price ranges across categories to find your sweet spot.

Install

Add as a skill to your agent in one command.

claude mcp add whatpeoplepayfor \
  --transport sse \
  --url https://api.whatpeoplepayfor.com/agent/sse \
  --header "Authorization: Bearer $WPP_KEY"

Start querying in 2 minutes.