/v1/actions/linkedin-search-events/run/liveSearch LinkedIn Events finds events on LinkedIn that match your query so you can discover conferences, webinars, and community meetups to build audience and outreach lists around. You get each event as a structured row — title, URL, date, organizer, attendee count — ready to feed into sourcing and engagement pipelines. It targets field marketing, growth, and community teams that treat events as a distribution channel.
The action runs on the LinkedIn level and uses your authenticated LinkedIn session on Edges.
You pass a LinkedIn events search URL or a keyword plus filters (date range, location, format), and Search LinkedIn Events walks the result pages for you. Edges handles pagination, normalizes each event row, and returns a clean array of event objects with stable identifiers.
Every request is signed with your connected LinkedIn session and paced within LinkedIn activity guidance. The action supports both live and async execution — live is fine for targeted keyword probes, async is the right choice for scheduled discovery runs.
Reach for Search LinkedIn Events when events are the unit you plan workflows around — sourcing attendee audiences, sponsoring the right meetups, tracking community activity in your space. It is the discovery step before any attendee-level work.
It plugs into the LinkedIn engagement API use case. Most teams use it as step one, then chain attendee extraction to build targeted lists.
eventId to dedupe across scheduled runs and to correlate attendee lists back to their source event.Typically a few hundred per well-scoped query. Very broad searches will hit LinkedIn's pagination ceiling — tighten keyword and date filters to capture more of the actual population.
Your LinkedIn account. Results are returned through the LinkedIn session you connect to Edges, so visibility matches your account's view.
Yes. Pass each eventUrl into Extract LinkedIn Event for the full payload, then into Extract LinkedIn Event Attendees to pull the audience, and Invite People to a LinkedIn Event to promote your own.
Run Search LinkedIn Events from the Edges library, schedule it against your keyword list, or call it from the Edges API to drive a weekly events feed. Browse the full Actions library to see the actions that pair downstream.
curl -X POST "https://api.edges.run/v1/actions/linkedin-search-events/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"linkedin_event_search_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
}
}'[
{
"event_name": "Example Name",
"description": "example_value",
"date": "1990-01-01",
"location": "example_value",
"linkedin_event_url": "https://www.linkedin.com/in/example-profile",
"attendees": "example_value",
"linkedin_event_id": "example-123"
}
]