Leads Finder : listes de prospects B2B depuis Google + Yelp

Génération de leads B2B et locaux depuis Google et Yelp. Renvoie nom d'entreprise, site, email, téléphone, adresse, catégorie et notes clients. Extraction d'emails optionnelle qui crawle la page d'accueil et la page contact de chaque entreprise. Alternative Apollo.io, sans login ni clé API.

Ouvrir sur Apify → Essayer maintenant
Tarif
$1,50/1k leads + $0,50 start
RAM
128 Mo
Sources
Google + Yelp
Extraction email
Intégrée
Couverture
Globale, géo-aware
Type
Alternative Apollo.io

Ce que vous obtenez par lead

Cas d'usage principaux

Exemple API

# Find B2B leads from Google and Yelp in one run
curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~leads-finder/runs?token=YOUR_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{
 "queries": ["digital marketing agency", "web design company"],
 "location": "New York, NY",
 "sources": ["google", "yelp"],
 "maxLeadsPerQuery": 50,
 "extractEmails": true
 }'

# Or use with AI agents via MCP:
# https://mcp.apify.com?tools=santamaria-automations/leads-finder

Intégrations

Exemple de sortie

{
 "name": "Acme Digital Marketing",
 "website": "https://acmedigital.com",
 "emails": ["[email protected]"],
 "phone": "+1-212-555-0123",
 "address": "123 Madison Ave",
 "city": "New York",
 "state": "NY",
 "country": "US",
 "category": "Digital Marketing Agency",
 "rating": 4.8,
 "review_count": 127,
 "linkedin_url": "https://www.linkedin.com/company/acme-digital",
 "source": "google",
 "search_query": "digital marketing agency New York, NY",
 "scraped_at": "2026-06-13T10:00:00.000Z"
}

Actors associés

Exécutez cet actor directement sur Apify (sans code)

Cliquez sur Ouvrir sur Apify ci-dessus pour lancer leads-finder dans votre navigateur – sans code, sans installation. Dans la console Apify, vous obtenez :

Obtenez votre jeton API Apify

Pour lancer cet actor depuis votre propre code, il vous faut un jeton API Apify. Environ une minute :

  1. Inscrivez-vous gratuitement à Apify (Google, GitHub ou e-mail).
  2. Allez dans Paramètres → Intégrations → Jetons API.
  3. Cliquez sur Créer un nouveau jeton API. Copiez et gardez-le secret.

Quota gratuit : Apify crédite votre compte de 5$ d'usage plateforme par mois, sans carte bancaire. Assez pour tester n'importe quel actor — à 0,001$ par résultat, c'est environ 5 000 résultats gratuits chaque mois.

Appeler depuis votre code

Lancez cet actor depuis n'importe quel langage via l'API REST Apify. Remplacez YOUR_TOKEN par votre jeton API et adaptez le JSON d'entrée.

curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
// npm install apify-client
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('santamaria-automations/leads-finder').call({});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
# pip install apify-client
from apify_client import ApifyClient

client = ApifyClient('YOUR_TOKEN')
run = client.actor('santamaria-automations/leads-finder').call(run_input={})
items = list(client.dataset(run['defaultDatasetId']).iterate_items())
print(items)
// dotnet add package Apify.Client
using Apify.Client;

var client = new ApifyClient("YOUR_TOKEN");
var run = await client.Actor("santamaria-automations/leads-finder").CallAsync(new { });
var items = await client.Dataset(run.DefaultDatasetId).ListItemsAsync();
// Maven: com.apify:apify-client
import com.apify.client.ApifyClient;

ApifyClient client = new ApifyClient("YOUR_TOKEN");
ActorRun run = client.actor("santamaria-automations/leads-finder").call(Map.of());
List<Map<String,Object>> items = client.dataset(run.getDefaultDatasetId()).listItems();

Utiliser avec des agents IA (MCP)

Cet actor est disponible sur le serveur MCP Apify, vous pouvez donc le piloter depuis n'importe quel client IA compatible MCP – Claude Desktop, Claude.ai, Cursor, VS Code, LangChain, LlamaIndex ou un agent maison – sans écrire de code.

https://mcp.apify.com?tools=santamaria-automations/leads-finder

Exemple de prompt une fois connecté :

"Utilise leads-finder pour lancer un scrape et donne-moi les résultats sous forme de tableau."

Les clients avec découverte dynamique des outils (Claude.ai, VS Code) reçoivent le schéma d'entrée complet automatiquement via add-actor.

Utiliser avec des plateformes no-code

Déclenchez cet actor depuis votre outil d'automatisation. Toutes les plateformes ci-dessous peuvent appeler l'API Apify en quelques clics — sans code.

  1. Ajoutez le node Apify pour n8n (installé par défaut sur n8n Cloud ; en self-hosted installez @apify/n8n-nodes-apify).
  2. Définissez Actor sur santamaria-automations/leads-finder.
  3. Choisissez l'opération Run Actor and get dataset, collez votre JSON d'entrée, et connectez un node aval (Google Sheets, Postgres, webhook, …).
  1. Créez un nouveau Zap avec n'importe quel déclencheur.
  2. Ajoutez une action Webhooks by Zapier POST vers https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN.
  3. Body : votre JSON d'entrée. Content-Type : application/json.
  1. Créez un nouveau scénario.
  2. Ajoutez un module HTTP : URL https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN, méthode POST, body raw JSON.
  3. Parsez la réponse avec un module JSON pour itérer les items en aval.
  1. Créez un nouveau workflow.
  2. Ajoutez une étape HTTP Request : POST vers https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN.
  3. Accédez à steps.http.$return_value dans les étapes suivantes.
  1. Installez le plugin API Connector.
  2. Ajoutez une nouvelle API : POST https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN, body type JSON.
  3. Initialisez l'appel avec votre input, puis référencez le tableau de réponse dans les actions de workflow.
Ouvrir sur Apify → Essayer maintenant (offre gratuite disponible)