Developer API

People search, without the scraping.

One REST endpoint. Query by name, city, and country — get a full profile back in seconds. Cheaper than proxies and CAPTCHAs, faster than a dedicated crawler, and no ToS headaches.

POST /api/public/v1/lookup
curl -X POST https://personpages.com/api/public/v1/lookup \
  -H "Authorization: Bearer pp_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Jane Doe",
    "age": 34,
    "city": "Berlin",
    "country": "Germany"
  }'

# → { "profile": { "full_name": "Jane Doe", "employer": "...", ... },
#     "url": "https://personpages.com/profile/jane-doe-berlin",
#     "cached": false, "quota_remaining": 1999 }

Simple pricing

Start free — upgrade when you need more. Cancel anytime.

Free

$0/mo
50 lookups / month
  • • REST API access
  • • Perfect for testing
  • • No credit card
Request free key

Starter

Popular
$49/mo
2,000 lookups / month
≈ $0.025 per lookup
  • REST API access
  • Cached & on-demand lookups
  • Full profile JSON
  • Email support

Growth

$299/mo
20,000 lookups / month
≈ $0.015 per lookup
  • Everything in Starter
  • Higher rate limits
  • Priority support
  • Usage dashboard
Need more than 20k/mo? Talk to us about Enterprise (200k+/mo, SLA, dedicated support).

1. Send a query

POST a name plus optional age, city, and country to /api/public/v1/lookup.

2. We do the work

If the profile exists, you get it instantly. If not, we run our search pipeline for you.

3. You get JSON

Structured profile, source URLs, confidence — plus a permanent public URL you can link to.

Already have a key? Paste your dashboard token at /developers/dashboard/<token>