> ## Documentation Index
> Fetch the complete documentation index at: https://strapi-suite.littlebox.pt/llms.txt
> Use this file to discover all available pages before exploring further.

# Sitemap

> Learn how to create parameters and connect them to the frontend using the API

The sitemap helps search engines (like Google) understand the structure of your site.
It lists all important pages, making indexing easier and improving visibility in search results.

## API

To get the data from the frontend, use your preferred HTTP client:

```bash theme={null}
curl -X GET "/api/littlebox-strapi-suite/modules/pages?properties=attributes"
```

```json theme={null}
[
    {
        "id": 69,
        "documentId": "un6hqh6smm657hwf0n06xm72",
        "slug": "noticias/littlebox-suite-ajudou-me-a-construir-sites-mais-rapido",
        "locale": "pt",
        "updatedAt": "2025-04-14T22:19:21.283Z",
        "attributes": {
            "template": "default",
            "priority": "0.5",
            "frequency": "weekly"
        },
        "localizations": [
            {
                "id": 74,
                "documentId": "un6hqh6smm657hwf0n06xm72",
                "slug": "en/news/littlebox-suite-helped-me-build-websites-faster",
                "locale": "en",
                "updatedAt": "2025-04-14T23:45:50.237Z",
                "attributes": {
                    "template": "default",
                    "priority": "0.5",
                    "frequency": "weekly"
                }
            },
            {
                "id": 76,
                "documentId": "un6hqh6smm657hwf0n06xm72",
                "slug": "fr/actualites/littlebox-suite-m-a-aide-a-creer-des-sites-web-plus-rapidement",
                "locale": "fr",
                "updatedAt": "2025-04-15T10:49:51.275Z",
                "attributes": {
                    "template": "default",
                    "priority": "0.5",
                    "frequency": "weekly"
                }
            }
        ]
    }
]
```

With this data, it's possible to build the sitemap using the frontend technology of your choice.\
However, if you prefer, you can use our [ready-to-go Next.js frontend](/frontend/introduction) as a base, which already implements these solutions.

<CardGroup cols={2}>
  <Card title="Frontend" icon="code" href="/frontend/introduction">
    Learn how our frontend streamlines integration with Strapi by automating repetitive tasks.
  </Card>

  <Card title="Hosting" icon="code" href="/hosting/plans">
    Explore our hosting solutions for staging and production environments.
  </Card>
</CardGroup>
