Linkedin Lead Qualification Research
Under maintenancePricing
from $10.00 / 1,000 results
Linkedin Lead Qualification Research
Under maintenanceArakyet Lead Qualification API helps revenue and hiring teams qualify LinkedIn profiles in a single call. Send one linkedin profile URL with your criteria (industry, job changes, tech stack, role fit, skills, education, funding signals, and posting behavior), and get qualified/not qualified.
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
ArakYet .com
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
11 days ago
Last modified
Categories
Share
Qualify a single LinkedIn lead through your API and store the result in Apify.
This Actor is built for teams that want to evaluate one LinkedIn profile at a time using structured filters such as industry, recent job changes, tech stack, job titles, skills, education, posting behavior, and company funding context.
What This Actor Does
The Actor takes a LinkedIn URL plus optional qualification filters, sends them to your /qualify-single endpoint, and saves the result to:
- The default dataset
- The
OUTPUTrecord in the default key-value store
This makes the Actor easy to use from the Apify Console, schedules, integrations, or the Apify API.
How It Works
When a run starts, the Actor:
- Reads the input from Apify.
- Builds a form-data request for your qualification API.
- Sends a
POSTrequest toapiBaseUrl/qualify-single. - Parses the API response.
- Stores the first item from
enriched_datawhen present. - Adds top-level fields such as
status,message,error, andskipped_ai_processingwhen they are returned by the API.
If the request fails or required fields are missing, the Actor stores a structured error result instead.
Required Input
The following fields are required:
apiBaseUrllinkedinUrl
apiBaseUrl
Base URL for your lead qualification API.
Default:
https://qualify-leads-932925834372.europe-west1.run.app
linkedinUrl
A single LinkedIn profile URL to qualify.
Example:
https://www.linkedin.com/in/example-person/
Optional Filters
You can refine qualification by filling any of the following fields.
Industry and company filters
industryType: Industry to qualify againstworkingInFundedCompany: Whether the person should work at a funded companyfollowerCount: Minimum follower counttechStack: One technology selected from the predefined list
Career change filters
recentJobChangeValue: Numeric job-change windowrecentJobChangeUnit:day,week,month, oryear
These two values are combined and sent to the API as a single changed_job_time object.
Role and expertise filters
jobTitlesIncluded: Comma-separated titles to includejobTitlesExcluded: Comma-separated titles to excludeskills: Comma-separated skillseducation: Education filter value
Example:
jobTitlesIncluded = Founder, CEO, Head of GrowthjobTitlesExcluded = Intern, Studentskills = B2B SaaS, outbound, GTMeducation = Engineering
Content and activity filters
postingFrequency: Posting frequency filterpostedAbout: Topic the lead has posted aboutcommentedAbout: Topic the lead has commented about
Example:
postingFrequency = weeklypostedAbout = sales automationcommentedAbout = lead generation
Example Input
{"apiBaseUrl": "https://qualify-leads-932925834372.europe-west1.run.app","linkedinUrl": "https://www.linkedin.com/in/example-person/","industryType": "SaaS","recentJobChangeValue": 6,"recentJobChangeUnit": "month","techStack": "HubSpot","followerCount": 1000,"jobTitlesIncluded": "Founder, CEO, Head of Growth","jobTitlesExcluded": "Intern, Student","skills": "B2B SaaS, outbound, GTM","education": "Engineering","workingInFundedCompany": true,"postingFrequency": "weekly","postedAbout": "sales automation","commentedAbout": "lead generation"}
Output
The Actor pushes one result item to the default dataset.
In successful runs, the stored item is usually the first object from the API response's enriched_data array. If the API also returns fields such as status, message, error, or skipped_ai_processing, those are copied into the saved result.
Because the response body comes from your API, the exact output structure depends on what /qualify-single returns.
Typical output behavior
- If
enriched_dataexists, the first item is stored. - If the API returns status metadata, it is added to the stored item.
- If the API returns an invalid response or the request fails, an error object is stored.
Error Handling
The Actor saves a structured error result for cases such as:
- Missing
apiBaseUrl - Missing
linkedinUrl - Network or timeout failures
- Invalid or unexpected API response bodies
Example:
{"linkedin_url": "https://www.linkedin.com/in/example-person/","status": "error","error": "API request failed: <details>"}
How To Use In Apify
In the Apify Console
- Open the Actor.
- Click Start.
- Fill in
apiBaseUrlandlinkedinUrl. - Add any optional filters you want.
- Run the Actor.
- Open the dataset to inspect the result.
Via Apify API
Run the Actor with the same JSON input you would use in the Console, then read the dataset items or the OUTPUT record after the run finishes.
Best Practices
- Start with only
linkedinUrlto validate the API connection. - Add filters gradually so you can see which criteria most affect qualification.
- Keep
apiBaseUrlpointed at the right environment, such as staging or production. - Review several dataset outputs to confirm your API response format matches expectations.
Notes
- This Actor qualifies one LinkedIn URL per run.
- Requests are sent as form-data, not JSON.
techStackis a single-select field in the input UI.- Fields like job titles and skills are passed as comma-separated strings.
Summary
Use this Actor when you want an Apify wrapper around your LinkedIn qualification API:
- Input one LinkedIn URL
- Add structured qualification filters
- Call
/qualify-single - Save the result for downstream automation