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.

from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {
    "locations": ["New York"],
    "categories": ["Real Estate"],
    "maxResults": 100,
}

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

# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)