> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bridgly.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Search LinkedIn events



## OpenAPI

````yaml /openapi.json post /linkedin/search/events
openapi: 3.1.0
info:
  title: Bridgly API
  description: >-
    Web scraping API for LinkedIn, X (Twitter) and Reddit. Authenticated
    endpoints accept a Bridgly API key (`bgly_…`) via `Authorization: Bearer
    <token>`.
  version: 1.0.0
servers:
  - url: https://api.bridgly.app
    description: Production
  - url: http://localhost:4000
    description: Local
security: []
tags:
  - name: LinkedIn
    description: Scrape LinkedIn profiles, companies, posts, and search.
  - name: Reddit
    description: Scrape Reddit posts, subreddits, users, and search.
  - name: X (Twitter)
    description: Scrape tweets and search X.
paths:
  /linkedin/search/events:
    post:
      tags:
        - LinkedIn
      summary: Search LinkedIn events
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                keyword:
                  type: string
                  description: >-
                    Keyword(s) to search LinkedIn for, e.g. "openai", "software
                    engineer", "fintech".
                start:
                  description: Pagination offset into the result list. Defaults to 0.
                  type: integer
                  minimum: 0
                  maximum: 9007199254740991
                count:
                  description: Number of results to return. Defaults to 10.
                  type: integer
                  minimum: 1
                  maximum: 9007199254740991
              required:
                - keyword
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  timeMs:
                    type: number
                    description: >-
                      Wall-clock time the request took to complete, in
                      milliseconds.
                  creditsCost:
                    type: number
                    description: Number of account credits this request consumed.
                  data:
                    type: object
                    properties:
                      events:
                        type: array
                        items:
                          type: object
                          properties:
                            eventUrn:
                              type: string
                              description: >-
                                Stable event identifier (always present), e.g.
                                urn:li:event:<id>.
                            eventId:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Numeric event id parsed from the event URN, e.g.
                                "7449421775681175552".
                            eventUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Canonical event URL
                                (https://www.linkedin.com/events/<id>/).
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Event name.
                            dateLabel:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Human-readable start date/time label including
                                timezone, e.g. "Tomorrow, 1:30 PM CEST", "Fri,
                                Jun 26, 9:00 AM CDT".
                            location:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Venue / location line, e.g. "Online",
                                "Ljubljana, Ljubljana, SI".
                            isOnline:
                              type: boolean
                              description: >-
                                Whether the event is held online (location reads
                                "Online").
                            organizer:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Hosting organizer name (the "By <organizer>"
                                segment).
                            attendeesLabel:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Raw attendee social-proof label as rendered by
                                LinkedIn, e.g. "31 attendees".
                            attendeesCount:
                              anyOf:
                                - type: number
                                - type: 'null'
                              description: >-
                                Attendee count parsed from the attendees label,
                                when present.
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Full event description / agenda text.
                            imageUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Largest available event banner / logo image URL.
                          required:
                            - eventUrn
                            - eventId
                            - eventUrl
                            - name
                            - dateLabel
                            - location
                            - isOnline
                            - organizer
                            - attendeesLabel
                            - attendeesCount
                            - description
                            - imageUrl
                          additionalProperties: false
                        description: Ranked matching events.
                      keyword:
                        type: string
                        description: The keyword(s) that were searched on LinkedIn.
                      totalResultCount:
                        anyOf:
                          - type: number
                          - type: 'null'
                        description: >-
                          Total number of matching results reported by LinkedIn
                          (not the number returned in this page).
                    required:
                      - events
                      - keyword
                      - totalResultCount
                    additionalProperties: false
                required:
                  - timeMs
                  - creditsCost
                  - data
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '402':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Bridgly API key (`bgly_…`). Metered endpoints deduct credits from the
        resolved account.

````