Sitemap Change Orchestrator avatar
Sitemap Change Orchestrator

Pricing

Pay per usage

Go to Store
Sitemap Change Orchestrator

Sitemap Change Orchestrator

Developed by

Tri⟁angle

Tri⟁angle

Maintained by Apify

Monitor website sitemaps for new, updated, or removed URLs. Integration with the Website Content Crawler (WCC) allows feeding only relevant URLs. This ensures your web crawls are efficient, targeted, and resource-optimized, keeping your datasets fresh for any application.

0.0 (0)

Pricing

Pay per usage

1

Total users

2

Monthly users

2

Runs succeeded

88%

Last modified

a day ago

You can access the Sitemap Change Orchestrator programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "startUrls": [{ "url": "https://apify.com" }],
10 "wccInput": {
11 "aggressivePrune": False,
12 "clickElementsCssSelector": "[aria-expanded=\"false\"]",
13 "clientSideMinChangePercentage": 15,
14 "crawlerType": "playwright:adaptive",
15 "debugLog": False,
16 "debugMode": False,
17 "expandIframes": True,
18 "ignoreCanonicalUrl": False,
19 "keepUrlFragments": False,
20 "proxyConfiguration": { "useApifyProxy": True },
21 "readableTextCharThreshold": 100,
22 "removeCookieWarnings": True,
23 "removeElementsCssSelector": """nav, footer, script, style, noscript, svg,
24[role=\"alert\"],
25[role=\"banner\"],
26[role=\"dialog\"],
27[role=\"alertdialog\"],
28[role=\"region\"][aria-label*=\"skip\" i],
29[aria-modal=\"true\"]""",
30 "renderingTypeDetectionPercentage": 10,
31 "saveFiles": False,
32 "saveHtml": False,
33 "saveHtmlAsFile": False,
34 "saveMarkdown": True,
35 "saveScreenshots": False,
36 "useSitemaps": False,
37 },
38}
39
40# Run the Actor and wait for it to finish
41run = client.actor("tri_angle/sitemap-change-orchestrator").call(run_input=run_input)
42
43# Fetch and print Actor results from the run's dataset (if there are any)
44print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
45for item in client.dataset(run["defaultDatasetId"]).iterate_items():
46 print(item)
47
48# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

Sitemap Change Orchestrator API in Python

The Apify API client for Python is the official library that allows you to use Sitemap Change Orchestrator API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include: