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.

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

Sitemap Change Orchestrator API in JavaScript

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

Install the apify-client

$npm install apify-client

Other API clients include: