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

# Run LinkedIn Company Search

> Searches LinkedIn companies by query and optional filters.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-linkedin-company-search
openapi: 3.0.0
info:
  title: NeuralVerge API
  version: 1.0.0
  description: >-
    NeuralVerge API for AI research workflows, search, extraction, and
    structured data source execution.
servers:
  - url: https://api.neuralverge.ai
    description: NeuralVerge API
security:
  - BearerAuth: []
tags:
  - name: AI Research
    description: Research workflows, search execution, and session tracking.
  - name: AI Extract
    description: Schema-driven extraction workflows.
  - name: AI Agents
    description: Reusable saved agents executed through the API.
  - name: Data Sources
    description: Focused provider lookups for LinkedIn, email, phone, and company data.
paths:
  /functions/v1/run-linkedin-company-search:
    post:
      tags:
        - Data Sources
      summary: Run LinkedIn Company Search
      description: Searches LinkedIn companies by query and optional filters.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - searchQuery
              properties:
                searchQuery:
                  type: string
                companySize:
                  type: array
                  items:
                    type: string
                industryIds:
                  type: array
                  items:
                    type: string
                locations:
                  type: array
                  items:
                    type: string
                maxItems:
                  type: number
                scraperMode:
                  type: string
                startPage:
                  type: number
            example:
              searchQuery: AI companies
              companySize:
                - 51-200
              industryIds:
                - Software
              locations:
                - Amsterdam
              maxItems: 5
              scraperMode: short
              startPage: 1
      responses:
        '200':
          description: Search completed.
          content:
            application/json:
              example:
                session_id: 33333333-3333-3333-3333-333333333333
                kind: linkedin_company_search
                companySize:
                  - 51-200
                industryIds:
                  - Software Development
                locations:
                  - San Francisco Bay Area
                maxItems: 2
                scraperMode: short
                searchQuery: AI safety companies
                startPage: 1
                human: >-
                  # LinkedIn company search


                  - **Results returned:** 2


                  ### OpenAI


                  - **Profile URL:** https://www.linkedin.com/company/openai/

                  - **Industry:** Research Services

                  - **Location:** San Francisco Bay Area

                  - **Followers:** 3200000

                  - **Summary:** AI research and deployment company.


                  ### Anthropic


                  - **Profile URL:**
                  https://www.linkedin.com/company/anthropicresearch/

                  - **Industry:** Software Development

                  - **Location:** San Francisco, California

                  - **Followers:** 450000

                  - **Summary:** Building reliable, interpretable, and steerable
                  AI systems.
                machine:
                  total_items: 2
                  first_item:
                    name: OpenAI
                    url: https://www.linkedin.com/company/openai/
                    industry: Research Services
                    headquarters: San Francisco Bay Area
                    followers: '3200000'
                    description: AI research and deployment company.
                  items:
                    - name: OpenAI
                      url: https://www.linkedin.com/company/openai/
                      industry: Research Services
                    - name: Anthropic
                      url: https://www.linkedin.com/company/anthropicresearch/
                      industry: Software Development
                points_per_company: 5
                total_points: 10
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '402':
          description: Payment Required
        '500':
          description: Internal Error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````