> ## 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 products



## OpenAPI

````yaml /openapi.json post /linkedin/search/products
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
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/products:
    post:
      tags:
        - LinkedIn
      summary: Search LinkedIn products
      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:
                      products:
                        type: array
                        items:
                          type: object
                          properties:
                            productUrn:
                              type: string
                              description: >-
                                Stable product identifier (always present), e.g.
                                urn:li:organizationalPage:<id>.
                            productId:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Numeric product id parsed from the product URN,
                                e.g. "87256149".
                            universalName:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Vanity slug from the /products/<slug>/ URL.
                            productUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Canonical product page URL
                                (https://www.linkedin.com/products/<slug>/).
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Product name.
                            category:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Product category, e.g. "Customer Relationship
                                Management (CRM) Software".
                            maker:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                The company that makes the product (the "by
                                <maker>" segment).
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Product description / tagline.
                            topFeatures:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Comma-separated top features as surfaced by
                                LinkedIn (raw human-readable text).
                            integrations:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Comma-separated notable integrations (raw
                                human-readable text).
                            usedBy:
                              type: array
                              items:
                                type: object
                                properties:
                                  companyUrn:
                                    type: string
                                    description: >-
                                      urn:li:fsd_company:<id> of a company that
                                      uses the product.
                                  companyId:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                    description: >-
                                      Numeric company id parsed from the company
                                      URN.
                                  name:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                    description: Company display name.
                                  companyUrl:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                    description: >-
                                      Canonical company page URL
                                      (https://www.linkedin.com/company/<slug>/).
                                required:
                                  - companyUrn
                                  - companyId
                                  - name
                                  - companyUrl
                                additionalProperties: false
                              description: >-
                                Named companies that use the product, resolved
                                from the "Used by …" social-proof line.
                            usedByOthersCount:
                              anyOf:
                                - type: number
                                - type: 'null'
                              description: >-
                                Count of additional unnamed users beyond those
                                listed in `usedBy` (the "and N others"
                                remainder).
                            logoUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Largest available product logo URL.
                          required:
                            - productUrn
                            - productId
                            - universalName
                            - productUrl
                            - name
                            - category
                            - maker
                            - description
                            - topFeatures
                            - integrations
                            - usedBy
                            - usedByOthersCount
                            - logoUrl
                          additionalProperties: false
                        description: Ranked matching products.
                      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:
                      - products
                      - 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.

````