> ## Documentation Index
> Fetch the complete documentation index at: https://docs.theslow.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Creating a Minimalist Link Site

> Use SlowNet to create a clean, minimal page with all your important links.

## Overview

Want a simple profile hub, like Linktree, but fully yours on SlowNet?\
You can build that by adding only link blocks and skipping a bio or mood.

## Example payload

```json theme={null}
{
  "bio": "",
  "avatar_url": "https://theslow.net/storage/avatars/me.png",
  "blocks": [
    { "type": "link", "content": "https://twitter.com/myprofile", "enabled": true },
    { "type": "link", "content": "https://instagram.com/myprofile", "enabled": true },
    { "type": "link", "content": "https://github.com/myprofile", "enabled": true }
  ]
}
```

## cURL example

```bash theme={null}
curl -X POST   'https://theslow.net/api/slownetsite/update-site-configuration'   -H 'X-API-KEY: YOUR_API_KEY'   -H 'Content-Type: application/json'   -d '{
    "bio": "",
    "avatar_url": "https://theslow.net/storage/avatars/me.png",
    "blocks": [
      { "type": "link", "content": "https://twitter.com/myprofile", "enabled": true },
      { "type": "link", "content": "https://instagram.com/myprofile", "enabled": true },
      { "type": "link", "content": "https://github.com/myprofile", "enabled": true }
    ]
  }'
```

## Authentication

This endpoint requires an API key. You can retrieve an API key from your [dashboard](https://theslow.net/dashboard). Include it in the `X-API-KEY` header:

```
X-API-KEY: YOUR_API_KEY_HERE
```

For more details, see the [Authentication Guide](https://docs.theslow.net/authentication).

## Related

* [Building your SlowNet page](building-your-slownet-page)

## Need Further Assistance?

If you have any questions or encounter issues, please don't hesitate to reach out to our [support team](https://theslow.net/dashboard#support).
