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

> Looks up a LinkedIn profile and returns contact details, including email when available.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-linkedin-email
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-email:
    post:
      tags:
        - Data Sources
      summary: Run LinkedIn Email
      description: >-
        Looks up a LinkedIn profile and returns contact details, including email
        when available.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - username
              properties:
                username:
                  type: string
                  description: Full LinkedIn profile URL.
            example:
              username: https://www.linkedin.com/in/john-doe/
      responses:
        '200':
          description: Lookup completed.
          content:
            application/json:
              example:
                session_id: 11111111-1111-1111-1111-111111111111
                kind: linkedin_email
                username: https://www.linkedin.com/in/sam-altman/
                includeEmail: true
                human: >-
                  # LinkedIn people profile + Email


                  - **Profile_url:** https://www.linkedin.com/in/sam-altman/

                  - **Fullname:** Sam Altman

                  - **Headline:** CEO at OpenAI

                  - **Location:** San Francisco Bay Area

                  - **About:** CEO of OpenAI and former president of Y
                  Combinator.

                  - **Email:** sam@openai.com
                machine:
                  total_items: 1
                  first_item:
                    basic_info:
                      fullname: Sam Altman
                      headline: CEO at OpenAI
                      profile_url: https://www.linkedin.com/in/sam-altman/
                      location:
                        full: San Francisco Bay Area
                      about: CEO of OpenAI and former president of Y Combinator.
                    email: sam@openai.com
                  items:
                    - basic_info:
                        fullname: Sam Altman
                        headline: CEO at OpenAI
                        profile_url: https://www.linkedin.com/in/sam-altman/
                      email: sam@openai.com
                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

````