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

# /linkedin/company

> Linkedin Get Company

**Price:** 1 credit

**⚠️ Common errors:** 412: Company not found. Verify the alias, URL, or URN.



## OpenAPI

````yaml /openapi/professional-network.json post /api/linkedin/company
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/linkedin/company:
    post:
      tags:
        - LinkedIn Companies
      summary: /linkedin/company
      description: >-
        Linkedin Get Company


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Company not found. Verify the alias, URL, or
        URN.
      operationId: __api_linkedin_company_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LinkedinCompanyPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LinkedinCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LinkedinCompanyPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          anyOf:
            - type: string
            - $ref: '#/components/schemas/LinkedinURN_Literal_fsd_company_company__'
      type: object
      required:
        - company
    LinkedinCompany:
      properties:
        '@type':
          type: string
          default: LinkedinCompany
        urn:
          $ref: '#/components/schemas/LinkedinURN_Literal_fsd_company_company__'
        url:
          type: string
        name:
          type: string
        alias:
          type: string
        website:
          anyOf:
            - type: string
            - type: 'null'
        locations:
          anyOf:
            - items:
                $ref: '#/components/schemas/LinkedinOfficeLocation'
              type: array
            - type: 'null'
        short_description:
          anyOf:
            - type: string
            - type: 'null'
        employee_count:
          anyOf:
            - type: integer
            - type: 'null'
        founded_on:
          anyOf:
            - type: integer
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        logo_url:
          anyOf:
            - type: string
            - type: 'null'
        organizational_urn:
          anyOf:
            - $ref: '#/components/schemas/LinkedinURN_Literal_company__'
            - type: 'null'
        page_verification_status:
          anyOf:
            - type: boolean
            - type: 'null'
        last_modified_at:
          anyOf:
            - type: integer
            - type: 'null'
        headquarter_status:
          anyOf:
            - type: boolean
            - type: 'null'
        headquarter_location:
          anyOf:
            - type: string
            - type: 'null'
        industry:
          anyOf:
            - $ref: '#/components/schemas/LinkedinURN_Literal_industry__'
            - type: 'null'
        industry_full:
          anyOf:
            - $ref: '#/components/schemas/LinkedinIndustry'
            - type: 'null'
        specialities:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
        employee_count_range:
          anyOf:
            - type: string
            - type: 'null'
        similar_organizations:
          anyOf:
            - items:
                $ref: '#/components/schemas/LinkedinURN_Literal_fsd_company__'
              type: array
            - type: 'null'
        hashtags:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        crunchbase_link:
          anyOf:
            - type: string
            - type: 'null'
        is_unclaimed:
          type: boolean
          default: false
      type: object
      required:
        - urn
        - url
        - name
        - alias
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    LinkedinURN_Literal_fsd_company_company__:
      properties:
        type:
          type: string
          enum:
            - fsd_company
            - company
        value:
          type: string
      type: object
      required:
        - type
        - value
    LinkedinOfficeLocation:
      properties:
        '@type':
          type: string
          default: LinkedinOfficeLocation
        name:
          type: string
        is_headquarter:
          type: boolean
          default: false
        location:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        geographic_area:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    LinkedinURN_Literal_company__:
      properties:
        type:
          type: string
          const: company
        value:
          type: string
      type: object
      required:
        - type
        - value
    LinkedinURN_Literal_industry__:
      properties:
        type:
          type: string
          const: industry
        value:
          type: string
      type: object
      required:
        - type
        - value
    LinkedinIndustry:
      properties:
        '@type':
          type: string
          default: LinkedinIndustry
        urn:
          $ref: '#/components/schemas/LinkedinURN_Literal_industry__'
        name:
          type: string
        hierarchy:
          type: string
      type: object
      required:
        - urn
        - name
        - hierarchy
        - description
    LinkedinURN_Literal_fsd_company__:
      properties:
        type:
          type: string
          const: fsd_company
        value:
          type: string
      type: object
      required:
        - type
        - value
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````