cURL
curl --request POST \ --url https://api.peoplecontext.com/v1/person/discover \ --header 'Authorization: <authorization>' \ --header 'Content-Type: application/json' \ --data ' { "linkedin": "<string>" } '
{ "socials": [ { "link": "<string>", "confidence": 123 } ] }
Discover related social media profiles from a LinkedIn username
POST /v1/person/discover
Bearer YOUR_API_KEY
"williamhgates"
curl -X POST "https://api.peoplecontext.com/v1/person/discover" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"linkedin": "williamhgates"}'
{ "socials": [ { "link": "https://github.com/BillGates", "confidence": 0.95 }, { "link": "https://x.com/BillGates", "confidence": 0.92 } ] }