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
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.
Number of invitations to return (used when not in pagination mode)
First page to fetch when using pagination mode (default: 1)
Last page to fetch when using pagination mode (default: same as start_page)
Country code for proxy selection. Available: (US,UK,FR)
LinkedIn authentication cookie obtained from the login/verify process
Response
Request status (success/error)
Number of invitations returned in this response
Total number of sent invitations available matching the filter criteria
Full name of the person who received the invitation
LinkedIn profile URL of the recipient
URL of the recipient’s profile picture (if available)
Professional headline or current position of recipient
When the invitation was sent
Custom message included with the invitation (if any)
Unique identifier for the invitation
Current state of the invitation (typically “PENDING”)
Type of invitation (CONNECTION, ORGANIZATION, CONTENT_SERIES)
LinkedIn entity URN for the invitation
First page fetched in the current request
Last page fetched in the current request
Number of results per page (typically 10)
Total number of pages fetched in the current request
{
"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
}
}
}