Facebook Pages Search

  • roundedge/facebook-pages-search
  • Modified
  • Users 381
  • Runs 3.5k
  • Created by Author's avatarRoundEdge

With more than 200M pages of businesses around the world, searching companies on Facebook is a must have when it comes to search for B2B leads. Enter the locations, the categories and keywords you're looking for and be ready to act on the results.

Free trial for 7 days

Then $40.00/month

No credit card required now

Facebook Pages Search

Free trial for 7 days

Then $40.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

import { ApifyClient } from 'apify-client';

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

// Prepare Actor input
const input = {
    "locations": [
        "New York"
    ],
    "categories": [
        "Real Estate"
    ],
    "maxResults": 100
};

(async () => {
    // Run the Actor and wait for it to finish
    const run = await client.actor("roundedge/facebook-pages-search").call(input);

    // Fetch and print Actor results from the run's dataset (if any)
    console.log('Results from dataset');
    const { items } = await client.dataset(run.defaultDatasetId).listItems();
    items.forEach((item) => {
        console.dir(item);
    });
})();