> ## 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 Phone Enrichment US

> Validates and enriches a US phone number with carrier and activity details.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-phone-enrichment-us
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-phone-enrichment-us:
    post:
      tags:
        - Data Sources
      summary: Run Phone Enrichment US
      description: >-
        Validates and enriches a US phone number with carrier and activity
        details.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - phone
              properties:
                phone:
                  type: string
            example:
              phone: '12069735100'
      responses:
        '200':
          description: Validation completed.
          content:
            application/json:
              example:
                session_id: aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa
                kind: phone_enrichment_us
                phone: '12069735100'
                human: |-
                  # Phone enrichment US

                  - **Input Phone:** 12069735100
                  - **Resolved Phone:** 12069735100
                  - **Valid:** Yes
                  - **Activity Score:** 87
                  - **Line Type:** mobile
                  - **Carrier:** Verizon Wireless
                  - **Prepaid:** No
                  - **Country:** United States (US) +1
                  - **Litigator Risk:** No

                  ## Owners

                  ### Owner 1
                  - **Name:** Sam Altman
                  - **Type:** person
                  - **Current Addresses:**
                    - San Francisco, California, US
                machine:
                  id: tr_phone_01HZX1234567890
                  phone_number: '12069735100'
                  is_valid: true
                  activity_score: 87
                  country_calling_code: '1'
                  country_code: US
                  country_name: United States
                  line_type: mobile
                  carrier: Verizon Wireless
                  is_prepaid: false
                  is_litigator_risk: false
                  owners:
                    - id: owner_123
                      name: Sam Altman
                      firstname: Sam
                      middlename: null
                      lastname: Altman
                      alternate_names: []
                      age_range: null
                      gender: null
                      type: person
                      link_to_phone_start_date: null
                      industry: []
                      current_addresses:
                        - id: addr_123
                          location_type: current
                          street_line_1: null
                          street_line_2: null
                          city: San Francisco
                          postal_code: null
                          zip4: null
                          state_code: CA
                          country_code: US
                          delivery_point: null
                          link_to_person_start_date: null
                  warnings: []
                  error: null
                total_points: 100
        '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

````