# Export all URLs from a Shopify store sitemap

**Use case:** 

Get every URL in a Shopify store's sitemap as one list. It finds the sitemaps through robots.txt and follows the sitemap index down to the child sitemaps Shopify splits products, collections, pages and blogs into. One row per URL, with its lastmod date. Export as CSV, JSON or Excel. This example reads Shopify's Hydrogen demo store and stops at 200 URLs, for at most $0.10.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://hydrogen.shop"
    }
  ],
  "maxUrls": 200,
  "checkStatus": false,
  "maxConcurrency": 5,
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "type": {
    "label": "Row",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "lastmod": {
    "label": "Last modified",
    "format": "text"
  },
  "changefreq": {
    "label": "Change freq.",
    "format": "text"
  },
  "priority": {
    "label": "Priority",
    "format": "text"
  },
  "statusCode": {
    "label": "Status",
    "format": "number"
  },
  "finalUrl": {
    "label": "Final URL",
    "format": "link"
  },
  "redirectCount": {
    "label": "Redirects",
    "format": "number"
  },
  "responseTimeMs": {
    "label": "Response (ms)",
    "format": "number"
  },
  "error": {
    "label": "Error",
    "format": "text"
  },
  "sourceSitemap": {
    "label": "Sitemap",
    "format": "link"
  },
  "startUrl": {
    "label": "Input",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Sitemap URL Extractor & Status Checker](https://apify.com/bjgomes/sitemap-url-extractor-status-checker.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bjgomes/sitemap-url-extractor-status-checker.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/bjgomes/sitemap-url-extractor-status-checker.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
