LinkedIn Person About
Get the narrative sections of a LinkedIn member's profile - about text, headline, work experience, education, honours and bio links - as JSON. Provide `username` or `url`. Costs 1 credit.
POST/api/v1/linkedin/person/about
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/jsonusernamestringPublic identifier (vanity handle).
Example: williamhgates
urlstringProvide username or url. Full LinkedIn profile URL, as an alternative to username.
Example: https://www.linkedin.com/in/williamhgates/
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.person_about(username="williamhgates")
print(results)Response
"about": "Chair of the Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
"headline": "Chair, Gates Foundation and Founder, Breakthrough Energy",
"education_summary": "Harvard University",
"honors_and_awards": [],
},
"response_time": 10054,
"credits_used": 1,
"credits_remaining": 999
}