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

# Search LinkedIn Jobs

> Search for job postings on LinkedIn by keyword, location, and filters.



## OpenAPI

````yaml /api-reference/v1/v1.1.0_openapi.json post /action/search_linkedin_jobs
openapi: 3.0.0
info:
  version: 1.1.0
  title: AI Actions - Get Data
  description: API specifications for 'Get Data' category AI actions.
  license:
    name: MIT
servers:
  - url: https://api-lr.agent.ai/v1
security:
  - bearerAuth: []
paths:
  /action/search_linkedin_jobs:
    post:
      tags:
        - Social Media & Online Presence
      summary: Search LinkedIn Jobs
      description: Search for job postings on LinkedIn by keyword, location, and filters.
      operationId: searchLinkedinJobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                keyword:
                  type: string
                  description: Search keyword for job titles or skills.
                  example: product manager
                location:
                  type: string
                  description: City or location to search in.
                  example: New York
                country:
                  type: string
                  description: Country code (e.g., 'US', 'FR', 'UK').
                  example: US
                job_type:
                  type: string
                  enum:
                    - Full-time
                    - Part-time
                    - Contract
                    - Temporary
                    - Internship
                  description: Type of employment.
                experience_level:
                  type: string
                  enum:
                    - Internship
                    - Entry level
                    - Associate
                    - Mid-Senior level
                    - Director
                    - Executive
                  description: Required experience level.
                remote:
                  type: string
                  enum:
                    - On-site
                    - Remote
                    - Hybrid
                  description: Work location type.
                time_range:
                  type: string
                  enum:
                    - Past 24 hours
                    - Past week
                    - Past month
                  description: When the job was posted.
              required:
                - keyword
      responses:
        '200':
          description: LinkedIn job search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ActionResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          description: HTTP status code of the action response
        response:
          type: object
          description: Response data from the action
    ErrorResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          description: HTTP status code
        error:
          type: string
          description: Human-readable error message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token from your account
        ([https://agent.ai/user/integrations#api](https://agent.ai/user/integrations#api))

````