B2B- und lokale Lead-Generierung aus Google-Suchergebnissen und Yelp. Liefert Firmenname, Website, E-Mail, Telefon, Adresse, Kategorie und Kundenbewertungen. Optionale automatische E-Mail-Extraktion crawlt jede Firmen-Homepage und Kontaktseite. Apollo.io-Alternative, kein Login oder API-Key nötig.
# 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
{
"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"
}Klicken Sie oben auf Auf Apify öffnen, um leads-finder im Browser auszuführen – kein Code, keine Installation. In der Apify-Konsole erhalten Sie:
Um diesen Actor aus Ihrem eigenen Code auszuführen, benötigen Sie einen Apify API-Token. In etwa einer Minute erledigt:
Gratiskontingent: Apify schreibt Ihrem Konto 5$ Plattformnutzung pro Monat gut, keine Kreditkarte erforderlich. Genug, um jeden Actor sinnvoll zu testen — bei 0,001$ pro Ergebnis sind das etwa 5.000 Ergebnisse gratis pro Monat.
Führen Sie diesen Actor aus jeder Sprache über die Apify-REST-API aus. Ersetzen Sie YOUR_TOKEN durch Ihren API-Token und passen Sie das JSON-Input an.
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();Dieser Actor ist auf dem Apify MCP-Server verfügbar, sodass Sie ihn von jedem MCP-kompatiblen KI-Client aus steuern können – Claude Desktop, Claude.ai, Cursor, VS Code, LangChain, LlamaIndex oder einem eigenen Agent – ohne Code zu schreiben.
https://mcp.apify.com?tools=santamaria-automations/leads-finderBeispiel-Prompt nach Verbindung:
"Verwende leads-finder, um einen Scrape durchzuführen, und liefere mir die Ergebnisse als Tabelle."
Clients mit dynamischer Tool-Discovery (Claude.ai, VS Code) erhalten das vollständige Input-Schema automatisch via add-actor.
Triggern Sie diesen Actor aus Ihrem Automatisierungstool. Alle unten aufgeführten Plattformen können die Apify-API in wenigen Klicks aufrufen — kein Code erforderlich.
@apify/n8n-nodes-apify installieren).santamaria-automations/leads-finder.https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN hinzu.application/json.https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN, Methode POST, Body raw JSON.https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN.steps.http.$return_value zu.https://api.apify.com/v2/acts/santamaria-automations~leads-finder/run-sync-get-dataset-items?token=YOUR_TOKEN, Body type JSON.