LinkedIn Person Contact
Get the public contact info a LinkedIn member has chosen to display — emails, phone numbers, websites, connected accounts, address, and birthday — as JSON. Fields are only populated when the member has made them public. Costs 4 credits.
POST/api/v1/linkedin/person/contact
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonusernamestringrequiredPublic identifier (vanity handle) from the member's profile URL.
Example: williamhgates
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.person_contact(username="williamhgates")
print(results)Response
"emails": [],
"phones": [],
"twitter": "BillGates",
"address": null,
"birthday": "October 28"
},
"response_time": 3305,
"credits_used": 4,
"credits_remaining": 4740
}