/v1/actions/linkedin-extract-people-educations/run/liveExtract People Educations pulls the education history from a LinkedIn profile — every school, degree, field of study, and date range — and returns it as a clean typed array. It runs on the LinkedIn level and is the focused primitive for screening, personalization, and enrichment workflows that only need the education slice of a profile.
Instead of requesting a full profile payload, you get exactly the education data, keyed to the profile, ready to write to your CRM or ATS.
You pass in a LinkedIn profile URL or profileId, Edges requests the education section through your authenticated LinkedIn session, and every education entry is parsed into a typed record. The operation runs live — the full education list returns in a single call.
The action runs on Edges infrastructure, browser-less and paced against LinkedIn's rate guidance. If the profile exposes no education (private or empty), Edges returns an empty array rather than an error, so your workflow branches cleanly.
Use this action when the education slice is the decision point: a recruiter screening for a specific degree, an outreach engine personalizing on shared alma mater, an enrichment job that only stores educational background. It fits the LinkedIn profile & company data API use case.
Extract People Educations is cheaper than pulling the full profile when you only need education — use it to keep payloads small and latency low in per-record workflows.
One. Extract People Educations is a per-record primitive. For list workflows, call it inside an orchestrated loop and let Edges pace the calls for you.
Your account. Every call runs through the LinkedIn session you connect to Edges, and the education data you see respects LinkedIn's visibility rules for that session.
Yes. Common chains are [Search LinkedIn People](/actions/linkedin-search-people) → Extract People Educations → score → route or Extract People Educations → Extract People Experiences → enrich ATS. The output is a plain education array any downstream action can consume.
Run Extract People Educations from your enrichment workflow via the Edges API or a no-code platform. Browse the full Actions library to compose education extraction with search, experience, and contact actions.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-people-educations/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"custom_data": "example_value",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_profile_id": "example_value"
}
}'{
"linkedin_profile_id": 42,
"sales_navigator_profile_id": "example-123",
"educations": [
1,
2,
3
]
}