Quick Start

Get your agent querying market data in under 2 minutes.

1

Get your API key

Sign in to the dashboard and copy your API key. It starts with wpp_live_.

2

Bootstrap

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

Ask a question

$ 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
4

Install as a skill

Claude Code:

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

See the Skills page for Codex and other agent setups.