| Method | Description |
|---|---|
canvas.linkedin.profiles() | Scrape profile data from LinkedIn URLs |
canvas.linkedin.posts() | Get recent posts from profiles |
canvas.linkedin.findUrls() | Find LinkedIn URLs by name + company |
canvas.linkedin.reactions() | Get people who reacted to posts |
canvas.linkedin.profiles()
Scrape detailed profile information from LinkedIn profile URLs.Parameters
LinkedIn profile URLs to scrape.
Fields to return. Defaults to all.
Returns
| Field | Type | Description |
|---|---|---|
fullName | string | Full name |
headline | string | Profile headline |
about | string | About section |
jobTitle | string | Current job title |
companyName | string | Current company |
companyIndustry | string | Company industry |
companyWebsite | string | Company website |
companySize | string | Company size |
connections | number | Connection count |
followers | number | Follower count |
email | string | Email (if public) |
mobileNumber | string | Phone (if public) |
topSkills | string[] | Top skills |
country | string | Country |
education | object[] | Education history |
canvas.linkedin.posts()
Get recent posts from LinkedIn profiles.Parameters
LinkedIn profile URLs to get posts from.
Posts to fetch per profile (max 100).
Include reposts/shares.
Include top 10 comments per post.
Returns
| Field | Type | Description |
|---|---|---|
postText | string | Post content |
postLink | string | Direct link to post |
postedAgo | string | When posted |
numLikes | number | Like count |
numComments | number | Comment count |
numShares | number | Share count |
isRepost | boolean | Whether it’s a repost |
canvas.linkedin.findUrls()
Find LinkedIn profile URLs for people by name and company using Fiber AI.Parameters
People to find URLs for. Each needs
firstName, lastName, and company.Returns
| Field | Type | Description |
|---|---|---|
firstName | string | First name (from input) |
lastName | string | Last name (from input) |
company | string | Company name (from input) |
linkedinUrl | string | Found LinkedIn profile URL |
confidence | number | Match confidence score (0-1) |
error | string | Error message if lookup failed |
canvas.linkedin.reactions()
Get people who reacted to LinkedIn posts. Great for finding engaged prospects.Parameters
LinkedIn post URLs to get reactions from.
Filter by reaction type. Options:
LIKE, CELEBRATE, SUPPORT, LOVE, INSIGHTFUL, FUNNY. Defaults to all types.Max total reactions to return.
Returns
| Field | Type | Description |
|---|---|---|
fullName | string | Person’s full name |
profileUrl | string | LinkedIn profile URL |
headline | string | Profile headline |
reactionType | string | Type of reaction |
jobTitle | string | Current job title |
companyName | string | Current company |