GET/v2/squid/{squid_id}/result

Get Results

Retrieve scraped LinkedIn profile data from your squid

Retrieve comprehensive LinkedIn profile data from your completed scraping tasks. The scraper extracts detailed information including work history, education, skills, and optionally email addresses.

Profile Information Fields

url
string
LinkedIn profile URL
Example: https://www.linkedin.com/in/williamhgates/
public_identifier
string
LinkedIn username/identifier
Example: williamhgates
first_name
string
First name
Example: Bill
last_name
string
Last name
Example: Gates
full_name
string
Full display name
Example: Bill Gates
headline
string
Profile headline
Example: Co-chair, Bill & Melinda Gates Foundation
description
string
Profile summary/about section
Example: Co-chair of the Bill & Melinda Gates Foundation...
location
string
Location from profile
Example: Seattle, Washington, United States
industry
string
Industry
Example: Philanthropy
vmid
string
LinkedIn internal member ID
Example: ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc
sales_nav_url
string
Sales Navigator profile URL
Example: https://www.linkedin.com/sales/people/ACoAAA8BYqE
picture_url
string
Profile picture URL
Example: https://media.licdn.com/dms/image/...
background_picture_url
string
Background/banner image URL
Example: https://media.licdn.com/dms/image/...
is_creator
string
Whether profile has creator mode enabled
Example: True
open_to_work
boolean
Whether profile shows open to work status
Example: false
num_connections
integer
Number of connections (500+ shows as 500)
Example: 500
num_followers
integer
Number of followers
Example: 35421987

Email Enrichment Fields

email
string
Discovered email address (if found)
Example: contact@example.com
email_status
string
Email validation status: valid, invalid, catch-all, unknown
Example: valid

Connection Fields

connection_degree
string
Connection degree (1st, 2nd, 3rd)
Example: 2
connections_url
string
URL to view profile's connections
Example: https://www.linkedin.com/search/results/people/?...
mutual_connections_url
string
URL to view mutual connections
Example: https://www.linkedin.com/search/results/people/?...
mutual_connections_text
string
Text showing number of mutual connections
Example: 15 mutual connections

Work Experience Fields

jobs
array
Array of job objects with full details
Example: [{title: CEO, company_name: Microsoft, ...}]
job_1
object
First job as JSON object
Example: {title: Co-chair, company_name: Bill & Melinda Gates Foundation}
job_1_title
string
Job title
Example: Co-chair
job_1_company_name
string
Company name
Example: Bill & Melinda Gates Foundation
job_1_company_url
string
LinkedIn company page URL
Example: https://www.linkedin.com/company/8736/
job_1_company_logo
string
Company logo URL
Example: https://media.licdn.com/dms/image/...
job_1_location
string
Job location
Example: Seattle, Washington, United States
job_1_description
string
Job description text
Example: Leading global health and education initiatives...
job_1_start_year
integer
Start year
Example: 2000
job_1_start_month
integer
Start month (1-12)
Example: 1
job_1_end_year
integer
End year (null if current)
Example: null
job_1_end_month
integer
End month (null if current)
Example: null

Education Fields

educations
array
Array of education objects
Example: [{school_name: Harvard University, field_of_study: Computer Science}]
education_1
object
First education entry as JSON object
Example: {school_name: Harvard University, ...}

Skills & Interests Fields

skills
array
List of skills from profile
Example: [Strategic Planning, Leadership, Public Speaking]
interests_companies
array
Companies the user follows
Example: [{company_id: 123, company_name: Microsoft, ...}]
interests_groups
array
Groups the user is a member of
Example: [{group_id: 456, group_name: Tech Leaders, ...}]

Featured Posts Fields

featured_1
object
First featured post with URL, likes, comments, and text
Example: {post_url: https://linkedin.com/feed/..., num_likes: 156, text: ...}
featured_2
object
Second featured post
Example: {}
featured_3
object
Third featured post
Example: {}
featured_4
object
Fourth featured post
Example: {}
featured_5
object
Fifth featured post
Example: {}

Headers

KeyValueRequired
AuthorizationToken YOUR_API_KEYYes

Parameters

limitinteger
Optional
Number of results per page (default: 10, max: 100)
Example: 10
offsetinteger
Optional
Number of results to skip for pagination
Example: 0
Pro Tip

Pro Tip

Use the `jobs` array for easier processing, or use flattened fields like `job_1_title` for direct access to specific positions.
Note

Note

The scraper extracts up to 10 jobs and 10 education entries per profile.
Pro Tip

Pro Tip

Check `open_to_work` to identify candidates actively seeking new opportunities.
Note

Note

Email fields are only populated when email enrichment is enabled in settings.