# Linkedin to Phone

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /lead/resolution/linkedin_to_phone:
    post:
      summary: Linkedin to Phone
      deprecated: false
      description: >
        <p>Skip the gatekeeper. LinkedIn To Phone resolves a LinkedIn URL into
        the prospect's verified direct mobile number: not an HQ line, not a
        company switchboard. Built for SDRs, recruiters, and outbound teams who
        need to reach the decision-maker on the first attempt. Pairs with
        SMS-first outreach for the fastest path from interest to
        conversation.</p>
      operationId: resolveLinkedInToPhone
      tags:
        - 👤  Lead Resolution
        - Resolution
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              x-apidog-refs:
                01KMJMXX4BCGB73S6GKDBFZ68T:
                  $ref: '#/components/schemas/LinkedInToPhoneRequest'
                  x-apidog-overrides:
                    metadata: null
              x-apidog-orders:
                - 01KMJMXX4BCGB73S6GKDBFZ68T
              properties:
                linkedin_url:
                  type: string
                  format: uri
                  description: The person's LinkedIn profile URL.
                  examples:
                    - https://linkedin.com/in/johndoe
                callback_url:
                  type: string
                  format: uri
                  description: URL where the result will be posted asynchronously
                  examples:
                    - https://webhook.site/your-id
              required:
                - linkedin_url
                - callback_url
              x-apidog-ignore-properties:
                - linkedin_url
                - callback_url
            example:
              linkedin_url: https://www.linkedin.com/in/john-doe
              callback_url: https://webhook.site/your-id
      responses:
        '200':
          description: Resolution accepted; result will be sent to callback_url.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: boolean
                  message:
                    type: string
                required:
                  - data
                  - message
                x-apidog-orders:
                  - data
                  - message
                x-apidog-ignore-properties: []
              example:
                success: true
                message: Resolution successfully completed!
                resolution:
                  id: res_4995Mdc8cM4221Ma290Mbc9b9144bb5c
                  status: completed
                  requested_at: '2026-05-29T12:39:17.853Z'
                  callback_url: https://webhook.site/your-id
                lead:
                  phone: '+11234567890'
                payload:
                  linkedin_url: linkedin.com/in/john-doe
                  callback_url: https://webhook.site/your-id
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: 👤  Lead Resolution
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1235890/apis/api-31382858-run
components:
  schemas:
    LinkedInToPhoneRequest:
      type: object
      description: >-
        Resolve a person's phone number from a LinkedIn profile URL. Requires
        callback_url for asynchronous delivery.
      required:
        - linkedin_url
        - callback_url
      properties:
        linkedin_url:
          type: string
          format: uri
          description: The person's LinkedIn profile URL.
          examples:
            - https://linkedin.com/in/johndoe
        callback_url:
          type: string
          format: uri
          description: URL where the result will be posted asynchronously
          examples:
            - https://webhook.site/your-id
      x-apidog-orders:
        - linkedin_url
        - callback_url
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes:
    bearerAuth:
      type: jwt
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Organization JWT or API key from Core API. Send in header:
        Authorization: Bearer {token}
    sysAuth:
      type: apikey
      in: header
      name: x-sys-key
      description: >-
        System authentication key for internal endpoints. Only for inter-service
        calls.
servers:
  - url: https://api.lead.springbolt.app
    description: Prod Env
security: []

```
