POST
/
v1
/
network
/
connections
curl --request POST \
  --url https://api.linkupapi.com/v1/network/connections \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "total_results": 123,
  "country": "<string>",
  "login_token": "<string>"
}'
{
  "status": "success",
  "data": {
    "total_results": 2,
    "connections": [
      {
        "name": "John Doe",
        "job_title": "Software Engineer at Tech Company",
        "profile_url": "https://www.linkedin.com/in/johndoe/",
        "profile_picture": "https://media.licdn.com/dms/image/v2/example.jpg"
      },
      {
        "name": "Jane Smith",
        "job_title": "Product Manager at Startup",
        "profile_url": "https://www.linkedin.com/in/janesmith/",
        "profile_picture": "https://media.licdn.com/dms/image/v2/example2.jpg"
      }
    ]
  }
}

Get a list of your LinkedIn connections with their basic information including name, job title, profile URL, and profile picture.

This endpoint costs 1 credit per request.

Header Parameters

x-api-key
string
required

Your API key

Body Parameters

total_results
integer
default:"10"

Number of connections to retrieve

country
string
default:"FR"

Country code for proxy selection. Available: (US,UK,FR)

login_token
string
required

LinkedIn authentication cookie obtained from the login/verify process

Response

status
string

Request status (success/error)

data
object
{
  "status": "success",
  "data": {
    "total_results": 2,
    "connections": [
      {
        "name": "John Doe",
        "job_title": "Software Engineer at Tech Company",
        "profile_url": "https://www.linkedin.com/in/johndoe/",
        "profile_picture": "https://media.licdn.com/dms/image/v2/example.jpg"
      },
      {
        "name": "Jane Smith",
        "job_title": "Product Manager at Startup",
        "profile_url": "https://www.linkedin.com/in/janesmith/",
        "profile_picture": "https://media.licdn.com/dms/image/v2/example2.jpg"
      }
    ]
  }
}

Notes

  • The profile picture URL may be ‘N/A’ if not available or if the connection has no profile picture
  • The job title may be ‘N/A’ if the connection hasn’t specified their current position