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



## OpenAPI

````yaml /openapi.json post /linkedin/search/jobs
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/jobs:
    post:
      tags:
        - LinkedIn
      summary: Search LinkedIn jobs
      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:
                  default: 10
                  description: Number of results to return (1–10). Defaults to 10.
                  type: integer
                  minimum: 1
                  maximum: 10
                location:
                  description: >-
                    Geographic location to filter jobs by, e.g. "San Francisco
                    Bay Area", "India", "Remote".
                  type: string
                workplaceType:
                  type: string
                  enum:
                    - on-site
                    - remote
                    - hybrid
                  description: Restrict to jobs with this workplace arrangement.
                experienceLevel:
                  type: string
                  enum:
                    - internship
                    - entry-level
                    - associate
                    - mid-senior
                    - director
                    - executive
                  description: Restrict to jobs at this seniority level.
                jobType:
                  type: string
                  enum:
                    - full-time
                    - part-time
                    - contract
                    - temporary
                    - internship
                    - volunteer
                    - other
                  description: Restrict to jobs with this employment type.
                datePosted:
                  type: string
                  enum:
                    - past-24h
                    - past-week
                    - past-month
                  description: Restrict to posts published within a recent window.
              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:
                      jobs:
                        type: array
                        items:
                          type: object
                          properties:
                            jobUrn:
                              type: string
                              description: >-
                                Stable job identifier (always present), e.g.
                                urn:li:fsd_jobPosting:<id>.
                            jobId:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Numeric job id parsed from the job URN, e.g.
                                "4417164255".
                            jobUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Canonical job posting URL
                                (https://www.linkedin.com/jobs/view/<id>/),
                                tracking params stripped.
                            title:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Job title.
                            companyName:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Hiring company name.
                            companyUrn:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Hiring company URN resolved from the posting
                                logo, e.g. urn:li:fsd_company:<id>.
                            companyId:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Numeric hiring-company id parsed from the
                                company URN.
                            companySlug:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Hiring company vanity slug parsed from the logo
                                link, e.g. "neuralink" (stable handle for
                                chaining company lookups).
                            companyUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Canonical hiring company page URL
                                (https://www.linkedin.com/company/<slug>/),
                                tracking params stripped.
                            location:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Job location line, e.g. "India (Remote)".
                            salary:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Compensation range label when the card
                                advertises pay, e.g. "$68K/yr - $75K/yr". Null
                                when the posting exposes no salary.
                            listedAt:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Listing date in ISO-8601 (UTC), parsed from the
                                posting's LISTED_DATE timestamp.
                            listedAtEpochMs:
                              anyOf:
                                - type: number
                                - type: 'null'
                              description: >-
                                Listing date as a Unix epoch in milliseconds,
                                e.g. 1781870351000.
                            imageUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Hiring company logo URL.
                            reposted:
                              anyOf:
                                - type: boolean
                                - type: 'null'
                              description: >-
                                Whether this posting is a repost of an earlier
                                listing (useful for de-duplicating and gauging
                                freshness).
                            verified:
                              anyOf:
                                - type: boolean
                                - type: 'null'
                              description: >-
                                Whether the posting carries LinkedIn's
                                verified-hiring badge. Null when the card
                                exposes no verification.
                          required:
                            - jobUrn
                            - jobId
                            - jobUrl
                            - title
                            - companyName
                            - companyUrn
                            - companyId
                            - companySlug
                            - companyUrl
                            - location
                            - salary
                            - listedAt
                            - listedAtEpochMs
                            - imageUrl
                            - reposted
                            - verified
                          additionalProperties: false
                        description: Ranked matching job postings.
                      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:
                      - jobs
                      - 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: []
      x-codeSamples:
        - lang: typescript
          label: Bridgly SDK
          source: |-
            import { Bridgly } from 'bridgly';

            const client = new Bridgly({ apiKey: process.env.BRIDGLY_API_KEY });

            const res = await client.linkedin.searchJobs({
              keyword: "string",
              count: 10,
            });
            if (res.type === 'success') console.log(res.data);
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Bridgly API key (`bgly_…`). Metered endpoints deduct credits from the
        resolved account.

````