# Facebook People Export to Excel (Cookieless) (`monumental_world/facebook-search-people`) Actor

Instantly turn Facebook contact details into an Excel or CSV report. No coding required—perfect for sales pipeline generation and lead prospecting.

- **URL**: https://apify.com/monumental\_world/facebook-search-people.md
- **Developed by:** [Raised Pro](https://apify.com/monumental_world) (community)
- **Categories:** Automation, Lead generation, Other
- **Stats:** 4 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

"# Facebook People Export to Excel (Cookieless)

### Need to download Facebook data to Excel? This tool helps you do exactly that.

Whether you're a sales professional, agency owner, or business developer, this tool makes it easy to export Facebook people data directly into Excel, CSV, or XML format—no technical skills or Facebook login required. Perfect for building prospect lists, researching potential leads, and growing your sales pipeline.

### Step-by-Step Guide

**Step 1:** Enter your search term or keyword (for example, ""insights"" or any topic related to your target audience).

**Step 2:** Click ""Start"" to begin the export. No login or cookies required—the tool works completely independently.

**Step 3:** Download your data as Excel, CSV, or XML. Open it in Excel, Google Sheets, or your favorite spreadsheet tool and start working with your data immediately.

### What columns will I get?

Your download will include the following columns:

- **Person ID** - Unique identifier for each person
- **First Name** - Contact's first name
- **Last Name** - Contact's last name
- **Email Address** - Email contact information
- **Phone Number** - Phone contact details
- **Job Title** - Professional position
- **Department Name** - Department or team
- **Hire Date** - Employment start date
- **Salary Amount** - Compensation information
- **Manager Name** - Direct supervisor
- **Office Location City** - Geographic location
- **Employment Status** - Current employment status

### How to use this data

Here are three simple ways to put your exported data to work:

1. **Build Your Sales Pipeline**: Import contacts directly into your CRM or sales database to create a comprehensive list of qualified prospects. Filter by job title, department, or location to prioritize your outreach.

2. **Accelerate Lead Generation**: Use the contact details to reach out to potential customers via email or phone. Sort by employment status and hire date to identify decision-makers who might be ready for your solution.

3. **Create Targeted Prospect Lists**: Export multiple searches and combine them in Excel to build segmented lists based on industry, role, or location. Perfect for personalized marketing campaigns and account-based selling strategies.

### Input Settings

**Query (Search Term or Keyword)**: This is what you're searching for on Facebook. Enter any keyword, topic, or phrase that relates to your target audience.

*Example*: If you're looking for people interested in marketing insights, enter ""insights"" or ""marketing professionals"" as your search term. The tool will find relevant profiles based on your keyword.

### Frequently Asked Questions

**Q: Do I need a Facebook account?**\
A: No! This tool works without requiring you to log in or have a Facebook account. It's completely cookieless.

**Q: Can I open this in Google Sheets?**\
A: Yes, absolutely! Just upload the CSV file to Google Sheets and you can work with your data in the cloud.

**Q: How many profiles can I export at once?**\
A: You can customize the number of results based on your needs. Simply adjust your settings before starting the export.

**Q: Is this data ready to use immediately?**\
A: Yes! The Excel or CSV file is formatted and ready to open. You can start filtering, sorting, and analyzing right away.

***

*Keywords: people search scraper, profile data extractor, social media scraper, lead generation scraper, export profiles, professional profile scraping, people finder tool*"

# Actor input Schema

## `query` (type: `string`):

Search term or keyword

## `maxPages` (type: `integer`):

Maximum number of pages to fetch (pagination handled automatically)

## Actor input object example

```json
{
  "query": "new york",
  "maxPages": 1
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("monumental_world/facebook-search-people").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("monumental_world/facebook-search-people").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{}' |
apify call monumental_world/facebook-search-people --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=monumental_world/facebook-search-people",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/aZswmwXZbZg2F3NAg/builds/KZd2P4D1reTPzDmU3/openapi.json
