Skip to main content
GET
/
user
/
connections
Get LinkedIn User Connections
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

username
string
required
limit
integer
default:10

Number of connections to return

Required range: 1 <= x <= 100

Response

200 - application/json

Successful response

connections
object[]
total
integer