Sitemap- und URL-Discovery: Jede URL jeder Site finden, $1 pro 1.000 Sitemaps

robots.txt, sitemap.xml und verschachtelte Sitemap-Indexe parsen, um jede veröffentlichte URL einer Website zu entdecken. Liefert jede URL mit Last-Modified-Datum, Change-Frequency und Priority. Unterstützt gzipped Sitemaps und Sitemap-Index-Ketten. Für Bulk gebaut: eine Liste von Domains rein, das vollständige URL-Inventar jeder raus. Ideal für SEO-Audits, Content-Monitoring, Competitive Intelligence und Pre-Crawl-URL-Discovery.

Auf Apify öffnen → Jetzt testen
Preise
$0,001/Sitemap
RAM
128MB
Abdeckung
Beliebige Domain
Ausgabefelder
8+
Proxy
Apify Datacenter
Technik
Natives XML + gzip

Was Sie erhalten

Wichtige Anwendungsfälle

API-Beispiel

# Einen Lauf über die Apify-API starten
curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~sitemap-url-discovery/runs?token=YOUR_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{
 "domains": [
 "https://example.com",
 "https://competitor.com",
 "https://news-site.com"
 ],
 "maxUrlsPerSite": 10000,
 "followSitemapIndexes": true,
 "parseRobotsTxt": true
 }'

# Oder mit KI-Agenten via MCP verwenden:
# https://mcp.apify.com?tools=santamaria-automations/sitemap-url-discovery

Integrationen

Ausgabefelder

FeldTypBeispiel
source_domainstringexample.com
sitemap_urlstringhttps://example.com/sitemap.xml
total_urlsinteger12.486
urlstringhttps://example.com/blog/post-1
lastmodstring2026-06-10T14:00:00Z
changefreqstringweekly
prioritynumber0,8
robots_sitemapsarray["https://example.com/sitemap.xml"]
is_gzippedbooleanfalse
scraped_atstring2026-06-13T10:15:42Z

Direkt auf Apify ausführen (kein Code)

Klicken Sie oben auf Auf Apify öffnen, um sitemap-url-discovery im Browser auszuführen – kein Code, keine Installation. In der Apify-Konsole erhalten Sie:

Ihren Apify API-Token erhalten

Um diesen Actor aus Ihrem eigenen Code auszuführen, benötigen Sie einen Apify API-Token. In etwa einer Minute erledigt:

  1. Kostenlos bei Apify registrieren (Google, GitHub oder E-Mail).
  2. Gehen Sie zu Einstellungen → Integrationen → API-Tokens.
  3. Klicken Sie auf Neuen API-Token erstellen. Kopieren und geheim halten.

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.

Aus Code aufrufen

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~sitemap-url-discovery/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/sitemap-url-discovery').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/sitemap-url-discovery').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/sitemap-url-discovery").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/sitemap-url-discovery").call(Map.of());
List<Map<String,Object>> items = client.dataset(run.getDefaultDatasetId()).listItems();

Mit KI-Agenten verwenden (MCP)

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/sitemap-url-discovery

Beispiel-Prompt nach Verbindung:

"Verwende sitemap-url-discovery, 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.

Mit No-Code-Plattformen verwenden

Triggern Sie diesen Actor aus Ihrem Automatisierungstool. Alle unten aufgeführten Plattformen können die Apify-API in wenigen Klicks aufrufen — kein Code erforderlich.

  1. Fügen Sie den n8n Apify-Node hinzu (auf n8n Cloud vorinstalliert; auf self-hosted @apify/n8n-nodes-apify installieren).
  2. Setzen Sie Actor auf santamaria-automations/sitemap-url-discovery.
  3. Wählen Sie Operation Run Actor and get dataset, fügen Sie Ihr Input-JSON ein und verbinden Sie einen Downstream-Node (Google Sheets, Postgres, Webhook, …).
  1. Erstellen Sie einen neuen Zap mit beliebigem Trigger.
  2. Fügen Sie eine Webhooks by Zapier POST-Action zu https://api.apify.com/v2/acts/santamaria-automations~sitemap-url-discovery/run-sync-get-dataset-items?token=YOUR_TOKEN hinzu.
  3. Body: Ihr Input-JSON. Content-Type: application/json.
  1. Erstellen Sie ein neues Szenario.
  2. Fügen Sie ein HTTP-Modul hinzu: URL https://api.apify.com/v2/acts/santamaria-automations~sitemap-url-discovery/run-sync-get-dataset-items?token=YOUR_TOKEN, Methode POST, Body raw JSON.
  3. Parsen Sie die Antwort mit einem JSON-Modul, um Items downstream zu iterieren.
  1. Erstellen Sie einen neuen Workflow.
  2. Fügen Sie einen HTTP Request-Schritt hinzu: POST zu https://api.apify.com/v2/acts/santamaria-automations~sitemap-url-discovery/run-sync-get-dataset-items?token=YOUR_TOKEN.
  3. Greifen Sie in nachfolgenden Schritten auf steps.http.$return_value zu.
  1. Installieren Sie das API Connector-Plugin.
  2. Fügen Sie eine neue API hinzu: POST https://api.apify.com/v2/acts/santamaria-automations~sitemap-url-discovery/run-sync-get-dataset-items?token=YOUR_TOKEN, Body type JSON.
  3. Initialisieren Sie den Call mit Ihrem Input und referenzieren Sie das Response-Array in Workflow-Actions.

Verwandte Aktoren

Auf Apify öffnen → Jetzt testen (kostenloses Kontingent verfügbar)