Search LinkedIn Events

LinkedIn Event Search searches for events on LinkedIn.

Edges is not related to LinkedIn and is not an official LinkedIn product.

API Endpoint

POST/v1/actions/linkedin-search-events/run/live

Parameters

Request parameters

Input Parameters

Integration Parameters

Guide

What Search LinkedIn Events does

Search 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.

How it works

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.

When to use Search LinkedIn Events

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.

Use cases

  • Field marketing discovery. Every Monday, pull LinkedIn events in your vertical for the next 30 days and route the shortlist to the events team.
  • Attendee-based ABM. Find a relevant conference, then chain Extract LinkedIn Event Attendees to pull the audience and match it against your ICP.
  • Community ops. Track every meetup organized in your topic space and surface new organizers worth partnering with.
  • Competitive intel. Watch which events competitors speak at or sponsor and use that signal to shape your own calendar.
  • Partner sourcing. Find events whose organizers align with your go-to-market and open partnership conversations early.

Best practices

  • Narrow by date and keyword. Broad event searches are noisy; a tight date window and specific topic keyword return clean, actionable results.
  • Chain attendee extraction sparingly. Attendee pulls are heavier than event discovery — only extract attendees for events that pass your qualification filter.
  • Store `eventId` as the key. Use eventId to dedupe across scheduled runs and to correlate attendee lists back to their source event.
  • Run async for scheduled discovery. When you scan many keywords daily, async execution keeps your pipeline responsive.

Common questions

How many events can I extract per run?

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.

Does Search LinkedIn Events use my LinkedIn account or a shared pool?

Your LinkedIn account. Results are returned through the LinkedIn session you connect to Edges, so visibility matches your account's view.

Can I chain Search LinkedIn Events with other Edges actions?

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.

Get started

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.

Code Examples

bash
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"
  }
}'

Output Example

[
  {
    "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"
  }
]

Explore More Actions

Discover other powerful LinkedIn automation actions in our library.