cd/quickstartยท homeโ€บquickstart
quickstarttime 5 minprereq curl

5-minute Quickstart

Get an API key, make your first call, wire it to your agent. No signup form โ€” just curl.

1. Get a key step1

Free tier ยท 10k req/day ยท no card. Hit the API directly to issue a key:

POST/v1/keys201
$curl -X POST https://api.wpnews.pro/v1/keys \
    -d '{"tier":"free","label":"my-laptop"}'

Or visit /api-keys for a GUI.

2. First call step2

GET/v1/news200
$curl https://api.wpnews.pro/v1/news -H "X-API-Key: $KEY" | jq '.data[0]'

3. Filter by topic step3

Combine ?topic=, ?entity=, ?since=:

GET/v1/news?topic=ai-models&since=2026-05-15200

4. Plug into your agent step4

5. Webhooks (Pro) step5

Push new articles to your endpoint within 30s. See /api#ep-webhook.