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

> Finds a LinkedIn profile by company name or domain and full name.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-linkedin-domain
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-domain:
    post:
      tags:
        - Data Sources
      summary: Run LinkedIn Domain
      description: Finds a LinkedIn profile by company name or domain and full name.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - company_or_domain
                - full_name
              properties:
                company_or_domain:
                  type: string
                full_name:
                  type: string
            example:
              company_or_domain: openai.com
              full_name: John Doe
      responses:
        '200':
          description: Lookup completed.
          content:
            application/json:
              example:
                session_id: 22222222-2222-2222-2222-222222222222
                kind: linkedin_domain
                company_or_domain: openai.com
                full_name: Sam Altman
                human: |-
                  # LinkedIn profile by name and domain

                  - **Company name / Domain:** openai.com
                  - **Full name:** Sam Altman
                  - **Matched name:** Sam Altman
                  - **Profile URL:** https://www.linkedin.com/in/sam-altman/
                  - **Headline:** CEO at OpenAI
                  - **Company:** OpenAI
                  - **Location:** San Francisco Bay Area
                  - **Records returned:** 1

                  ## Summary

                  CEO at OpenAI and former president of Y Combinator.
                machine:
                  total_items: 1
                  first_item:
                    fullName: Sam Altman
                    profileUrl: https://www.linkedin.com/in/sam-altman/
                    headline: CEO at OpenAI
                    companyName: OpenAI
                    location: San Francisco Bay Area
                    summary: CEO at OpenAI and former president of Y Combinator.
                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

````