POST
/
v1
/
network
/
sent-invitations
Get Sent Invitations
curl --request POST \
  --url https://api.linkupapi.com/v1/network/sent-invitations \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "invitation_type": "<string>",
  "total_results": 123,
  "start_page": 123,
  "end_page": 123,
  "country": "<string>",
  "login_token": "<string>"
}'
{
  "status": "success",
  "data": {
    "total_results": 10,
    "total_available_results": 138,
    "invitations": [
      {
        "name": "Michelle Heppler",
        "profile_url": "https://www.linkedin.com/in/michelle-heppler",
        "subtitle": "Co-Founder & CCO at Unique AI | Financial Services Agentic AI | 🌍 New York",
        "sent_time": "Sent yesterday",
        "invitation_id": 7329176687475109888,
        "invitation_state": "PENDING",
        "message": null,
        "entity_urn": "urn:li:fsd_invitation:7329176687475109888",
        "profile_picture": "https://media.licdn.com/dms/image/v2/D4E03AQGxumjpNvfVgA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730035749634?e=1752710400&v=beta&t=Yn_F5VjS3rd669E6X5x8gOeYnN6wAo49t8a8g9Ci4u4",
        "invitation_type": "CONNECTION"
      },
      // More invitations...
    ],
    "pagination": {
      "start_page": 1,
      "end_page": 1,
      "results_per_page": 10,
      "pages_fetched": 1
    }
  }
}
Search and retrieve invitations you have sent with detailed information about each invitation and recipient. Supports pagination and filtering by invitation type.
Credit Usage: 1 credit per page of results. For example:
  • 1 page = 1 credit
  • 5 pages = 5 credits

Header Parameters

x-api-key
string
required
Your API key

Body Parameters

invitation_type
string
default:"CONNECTION"
Filter by invitation type. Available types:
  • CONNECTION (to people)
  • ORGANIZATION (to pages)
  • CONTENT_SERIES (to newsletters) If not specified, CONNECTION type will be used.
total_results
integer
default:"10"
Number of invitations to return (used when not in pagination mode)
start_page
integer
First page to fetch when using pagination mode (default: 1)
end_page
integer
Last page to fetch when using pagination mode (default: same as start_page)
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": 10,
    "total_available_results": 138,
    "invitations": [
      {
        "name": "Michelle Heppler",
        "profile_url": "https://www.linkedin.com/in/michelle-heppler",
        "subtitle": "Co-Founder & CCO at Unique AI | Financial Services Agentic AI | 🌍 New York",
        "sent_time": "Sent yesterday",
        "invitation_id": 7329176687475109888,
        "invitation_state": "PENDING",
        "message": null,
        "entity_urn": "urn:li:fsd_invitation:7329176687475109888",
        "profile_picture": "https://media.licdn.com/dms/image/v2/D4E03AQGxumjpNvfVgA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730035749634?e=1752710400&v=beta&t=Yn_F5VjS3rd669E6X5x8gOeYnN6wAo49t8a8g9Ci4u4",
        "invitation_type": "CONNECTION"
      },
      // More invitations...
    ],
    "pagination": {
      "start_page": 1,
      "end_page": 1,
      "results_per_page": 10,
      "pages_fetched": 1
    }
  }
}