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

# Get LinkedIn Job Posting

> Retrieve detailed information about a specific LinkedIn job posting.



## OpenAPI

````yaml /api-reference/v1/v1.1.0_openapi.json post /action/get_linkedin_job_posting
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/get_linkedin_job_posting:
    post:
      tags:
        - Social Media & Online Presence
      summary: Get LinkedIn Job Posting
      description: Retrieve detailed information about a specific LinkedIn job posting.
      operationId: getLinkedinJobPosting
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                job_url:
                  type: string
                  description: LinkedIn job posting URL.
                  example: >-
                    https://www.linkedin.com/jobs/view/software-engineer-at-epic-3986111804
              required:
                - job_url
      responses:
        '200':
          description: LinkedIn job posting data
          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))

````