Umfassende Firmendaten von Google Maps zu einem Bruchteil der Kosten von Alternativen extrahieren. Name, Adresse, Telefon, Website, Bewertungen, Ratings, Öffnungszeiten, GPS-Koordinaten und Fotos für jeden Standort weltweit abrufen. Unser Scraper liefert 30+ strukturierte Felder pro Eintrag über Datacenter-Proxys und ist damit 10x günstiger als browserbasierte Mitbewerber.
# Einen Lauf über die Apify-API starten curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~google-maps-scraper/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "searchQueries": ["restaurants in München"], "maxResultsPerQuery": 100, "language": "de" }' # Oder mit KI-Agenten via MCP verwenden: # https://mcp.apify.com?tools=santamaria-automations/google-maps-scraper
| Merkmal | NanoScrape | compass/crawler-google-places |
|---|---|---|
| Kosten pro 1k Einträge | $3,75 | $35 - $50 |
| RAM-Verbrauch | 256MB | 2-8GB |
| Proxy-Typ | Datacenter ($0,006/Req) | Residential ($$$) |
| Felder pro Eintrag | 30+ | 20-30 |
| Bewertungs-Extraktion | Ja | Ja |
| GPS-Koordinaten | Ja | Ja |
| Feld | Typ | Beispiel |
|---|---|---|
| name | string | Augustiner-Keller |
| category | string | Biergarten |
| address | string | Arnulfstr. 52, 80335 München |
| phone | string | +49 89 594393 |
| website | string | https://www.augustinerkeller.de |
| rating | number | 4,5 |
| review_count | number | 12.847 |
| latitude | number | 48,1432 |
| longitude | number | 11,5512 |
| opening_hours | object | {"Mo": "11:00-23:00", ...} |
Klicken Sie oben auf Auf Apify öffnen, um google-maps-scraper 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~google-maps-scraper/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/google-maps-scraper').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/google-maps-scraper').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/google-maps-scraper").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/google-maps-scraper").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/google-maps-scraperBeispiel-Prompt nach Verbindung:
"Verwende google-maps-scraper, 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/google-maps-scraper.https://api.apify.com/v2/acts/santamaria-automations~google-maps-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN hinzu.application/json.https://api.apify.com/v2/acts/santamaria-automations~google-maps-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN, Methode POST, Body raw JSON.https://api.apify.com/v2/acts/santamaria-automations~google-maps-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN.steps.http.$return_value zu.https://api.apify.com/v2/acts/santamaria-automations~google-maps-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN, Body type JSON.