cURL
curl --request GET \ --url https://api.zilodata.com/api/v1/linkedin/user/connections \ --header 'Authorization: Bearer <token>'
{ "connections": [ { "id": "acme:123456", "firstName": "John", "lastName": "Doe", "headline": "Software Engineer at Tech Corp", "location": "San Francisco, CA", "profileUrl": "https://www.linkedin.com/in/johndoe", "connections": 500, "experience": [ { "title": "Senior Software Engineer", "company": "Tech Corp", "startDate": "2020-01-01", "endDate": "2023-12-31" } ] } ], "total": 123 }
Retrieve list of user’s connections
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Number of connections to return
1 <= x <= 100
Successful response
Show child attributes
Unique identifier for the user
"acme:123456"
User's first name
"John"
User's last name
"Doe"
User's professional headline
"Software Engineer at Tech Corp"
User's location
"San Francisco, CA"
URL to user's LinkedIn profile
"https://www.linkedin.com/in/johndoe"
Number of connections
500
"Senior Software Engineer"
"Tech Corp"
"2020-01-01"
"2023-12-31"
Was this page helpful?