Skip to main content
POST
/
v1
/
network
/
invitation-status
Get Invitation Status
curl --request POST \
  --url https://api.linkupapi.com/v1/network/invitation-status \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "linkedin_url": "<string>",
  "country": "<string>",
  "login_token": "<string>"
}
'
{
 "status": "success",
 "data": {
   "invitation_state": "ACCEPTED",
   "invitation_type": "CONNECTED",
   "invitation_id": null,
   "member_distance": 1,
   "message": "You are connected with this person"
 }
}

Documentation Index

Fetch the complete documentation index at: https://docs.linkupapi.com/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve the connection degree and invitation status between your account and any LinkedIn profile. This endpoint provides information about whether you are connected, have a pending invitation, or have no relationship with the target profile.
Credit Usage: 1 credit per request

Header Parameters

x-api-key
string
required
Your API key

Body Parameters

linkedin_url
string
required
URL of the LinkedIn profile you want to check (e.g., https://www.linkedin.com/in/username/)
country
string
default:"FR"
Country code for proxy selection. Available: (US, UK, FR, DE, NL, IT, IL, CA, BR, ES, IN)
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": {
   "invitation_state": "ACCEPTED",
   "invitation_type": "CONNECTED",
   "invitation_id": null,
   "member_distance": 1,
   "message": "You are connected with this person"
 }
}