# Mobile / Phone Number Finder : $4 / 100 Mobiles (`code_crafter/mobile-finder`) Actor

🔍 Find mobile number 📞 instantly for any LinkedIn profile.

- **URL**: https://apify.com/code\_crafter/mobile-finder.md
- **Developed by:** [Code Pioneer](https://apify.com/code_crafter) (community)
- **Categories:** Lead generation, Automation, E-commerce
- **Stats:** 1,635 total users, 198 monthly users, 100.0% runs succeeded, 40 bookmarks
- **User rating**: 4.48 out of 5 stars

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Mobile Finder

Find mobile phone numbers from LinkedIn profile URLs using the Mobile Finder Apify actor.

### 📋 Description

Mobile Finder is an Apify actor that takes LinkedIn profile URLs as input and returns mobile phone numbers associated with those profiles. Simply provide LinkedIn URLs and get mobile numbers in return.

### 🚀 How to Use

#### Input

The actor requires a list of LinkedIn profile URLs:

- **Field**: `linkedin_url`
- **Type**: Array of strings
- **Description**: Enter the LinkedIn URLs of the people you want to find mobile numbers for
- **Example**:
  ```json
  {
    "linkedin_url": [
      "https://www.linkedin.com/in/derek-lemoine-8891a6176/",
      "www.linkedin.com/in/divyavamarnath/"
    ]
  }
  ```

#### Supported URL Formats

The actor accepts LinkedIn URLs in various formats:

- `https://www.linkedin.com/in/username`
- `www.linkedin.com/in/username`
- `linkedin.com/in/username`

#### Output

The actor returns results in the following format:

```json
{
  "linkedin_url": "https://www.linkedin.com/in/username",
  "first_mobile_number": "+1234567890",
  "mobile_numbers": ["+1234567890"]
}
```

**Fields:**

- `linkedin_url`: The original LinkedIn URL you provided
- `first_mobile_number`: The mobile phone number found (or `null` if not found)
- `mobile_numbers`: Array containing the mobile number(s) (empty array `[]` if not found)

#### Example Output

**When mobile number is found:**

```json
{
  "linkedin_url": "https://www.linkedin.com/in/johndoe",
  "first_mobile_number": "+18455846030",
  "mobile_numbers": ["+18455846030"]
}
```

**When mobile number is not found:**

```json
{
  "linkedin_url": "https://www.linkedin.com/in/johndoe",
  "first_mobile_number": null,
  "mobile_numbers": []
}
```

### ⚙️ Features

- ✅ Batch processing (processes URLs in batches of 100)
- ✅ Automatic URL normalization
- ✅ User-friendly progress logging
- ✅ Rate limiting protection
- ✅ Free and paid plan support

### 📊 Usage Limits

#### Free Apify Plan

- **Maximum 100 URLs per run**
- **Maximum 20 runs per day**
- If you exceed 100 URLs, only the first 100 will be processed

#### Paid Apify Plan

- **Unlimited URLs per run**
- **Unlimited daily runs**

### 💰 Pricing

Users are charged based on the number of mobile numbers found. The actor uses Apify's Pay-Per-Event (PPE) monetization model:

- You are charged for each mobile number successfully found
- No charge if a mobile number is not found

**Note**: Make sure you have sufficient balance in your Apify account. The actor will stop if you reach your maximum cost per run limit.

### 📝 Logs

The actor provides user-friendly progress logs:

```
[INFO] 🔄 Mobile Finder Process Started..
[INFO] 🔍 Processing 1667 LinkedIn URL(s)
[INFO] 📱 Searching for mobile numbers...
[INFO] ✅ Found mobile numbers for 1666 out of 1667 LinkedIn profiles
[INFO] 🎉 Actor run finished successfully
```

### 🆘 Support

For support, please contact: **codecrafter70@gmail.com**

### 📄 License

This actor is provided as-is for use on the Apify platform.

### 🔄 Version

Current version: **1.0.0**

***

**Happy mobile finding! 📱**

# Actor input Schema

## `linkedin_url` (type: `array`):

Enter the Linkedin URLs of the people, you want to find mobile number for.

## Actor input object example

```json
{
  "linkedin_url": [
    "https://www.linkedin.com/in/derek-lemoine-8891a6176/",
    "www.linkedin.com/in/divyavamarnath/"
  ]
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "linkedin_url": [
        "https://www.linkedin.com/in/derek-lemoine-8891a6176/",
        "www.linkedin.com/in/divyavamarnath/"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("code_crafter/mobile-finder").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "linkedin_url": [
        "https://www.linkedin.com/in/derek-lemoine-8891a6176/",
        "www.linkedin.com/in/divyavamarnath/",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("code_crafter/mobile-finder").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "linkedin_url": [
    "https://www.linkedin.com/in/derek-lemoine-8891a6176/",
    "www.linkedin.com/in/divyavamarnath/"
  ]
}' |
apify call code_crafter/mobile-finder --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,code_crafter/mobile-finder"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/5lnEEZaNNBD8VeFAN/builds/LfgPfz31om7kMQmhy/openapi.json
