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.
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 }Start free — upgrade when you need more. Cancel anytime.
POST a name plus optional age, city, and country to /api/public/v1/lookup.
If the profile exists, you get it instantly. If not, we run our search pipeline for you.
Structured profile, source URLs, confidence — plus a permanent public URL you can link to.