VOOZH about

URL: https://apify.com/maximedupre/sitemap-validator/api/python

โ‡ฑ Sitemap Validator API in Python ยท Apify


Pricing

$0.90 / 1,000 checked urls

Go to Apify Store

Validate XML sitemaps and sitemap indexes. Check listed URLs for HTTP status, redirects, final URL, response time, malformed URLs, and sitemap metadata.

Pricing

$0.90 / 1,000 checked urls

Rating

0.0

(0)

Developer

๐Ÿ‘ Maxime Duprรฉ

Maxime Duprรฉ

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

You might also like

Sitemap URL Extractor - List All URLs in a Sitemap

dltik/sitemap-url-extractor

Extract every URL from any XML sitemap, with lastmod, changefreq and priority. Resolves sitemap indexes recursively. Pass a sitemap.xml or just a site root to auto-discover its sitemaps. Pure HTTP, no browser โ€” fast and cheap.

Sitemap Analyzer โ€” Parse, Validate & Check URLs

accurate_pouch/sitemap-analyzer

Parse XML sitemaps, extract all URLs, validate structure (priority, changefreq, lastmod), optionally check HTTP status of every URL. Supports sitemap indexes.

๐Ÿ‘ User avatar

Manchitt Sanan

2

Sitemap Scraper

pvillalva/sitemap-scraper

The Sitemap Scraper extracts and outputs all URLs from a given sitemap.

๐Ÿ‘ User avatar

Percival Villalva

269

Sitemap to URL Crawler โ€” Extract Sitemap.xml URLs for RAG

logiover/sitemap-to-url-crawler

Extract all URLs from any sitemap.xml recursively. Export sitemap URLs to CSV/JSON for RAG pipelines, SEO audits, and LLM training datasets.

Xml Sitemap Validator

zerobreak/xml-sitemap-validator

XML sitemap validator that crawls every URL in your sitemap and flags broken links, redirect chains, and structural errors โ€” so SEO teams can audit sitemap health in seconds.

Sitemap URL Extractor

onescales/sitemap-url-extractor

Provide a website link to a sitemap.xml and the app will extract and list all URLs in the sitemap as well as additional data in the sitemap (i.e. https://onescales.com/sitemap.xml).

580

5.0

Sitemap URL Extractor

getdataforu/sitemap-url-extractor

Provide a website link to a sitemap.xml and the app will extract and list all URLs in the sitemap as well as additional data in the sitemap (i.e. https://onescales.com/sitemap.xml).

2

5.0

You can access the Sitemap Validator 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.

๐Ÿ‘ Python

Python

๐Ÿ‘ JavaScript

JavaScript

CLI

๐Ÿ‘ OpenAPI

OpenAPI

HTTP

MCP

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"targets":["https://apify.com/sitemap.xml"],
10"maxCheckedUrls":200,
11"maxIndexDepth":2,
12}
13
14# Run the Actor and wait for it to finish
15run = client.actor("maximedupre/sitemap-validator").call(run_input=run_input)
16
17# Fetch and print Actor results from the run's dataset (if there are any)
18print("๐Ÿ’พ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
19for item in client.dataset(run["defaultDatasetId"]).iterate_items():
20print(item)
21
22# ๐Ÿ“š Want to learn more ๐Ÿ“–? Go to โ†’ https://docs.apify.com/api/client/python/docs/quick-start

Sitemap Validator API in Python

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

Install the apify-client

$pip install apify-client

Other API clients include:

Sitemap Validator API in JavaScript

Sitemap Validator API through CLI

Sitemap Validator OpenAPI definition

Sitemap Validator API