> ## 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 Company Profile

> Retrieve detailed information about a LinkedIn company page including size, industry, and specialties.



## OpenAPI

````yaml /api-reference/v1/v1.1.0_openapi.json post /action/get_linkedin_company_profile
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_company_profile:
    post:
      tags:
        - Social Media & Online Presence
      summary: Get LinkedIn Company Profile
      description: >-
        Retrieve detailed information about a LinkedIn company page including
        size, industry, and specialties.
      operationId: getLinkedinCompanyProfile
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                company_url:
                  type: string
                  description: >-
                    LinkedIn company URL or company slug (e.g., 'hubspot' or
                    'https://linkedin.com/company/hubspot').
                  example: https://www.linkedin.com/company/hubspot
              required:
                - company_url
      responses:
        '200':
          description: LinkedIn company profile 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))

````