get_sitemap_pages
Extract all pages from a website's sitemap, with options for pagination, filtering by route, including metadata, and setting limits for efficient data retrieval.
Instructions
Get all pages from a website's sitemap with optional limits and filtering options. Supports cursor-based pagination.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor for fetching the next page of results | |
include_metadata | No | Whether to include additional page metadata (priority, lastmod, etc.) | |
limit | No | Maximum number of pages to return per page (0 for default of 100) | |
route | No | Optional route path to filter pages by (e.g., '/blog') | |
sitemap_url | No | Optional URL of a specific sitemap to get pages from | |
url | Yes | The URL of the website homepage (e.g., https://example.com) |