> ## 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.

# Integrating with Zapier or n8n

> Use Zapier or n8n to automate your SlowNet updates with no code.

## Overview

Want to update your SlowNet page whenever something happens — like a new RSS post, or a new calendar event?\
You can use tools like **Zapier** or **n8n** to make HTTP requests to your SlowNet API.

## Example with Zapier Webhooks

1. Create a Zap with any trigger (like new Google Calendar event).
2. Add an **Action**: Webhooks by Zapier → POST.
3. Set up the request:

* **URL:** `https://theslow.net/api/slownetsite/update-site-configuration`
* **Method:** POST
* **Headers:**
  * `X-API-KEY: YOUR_API_KEY`
  * `Content-Type: application/json`
* **Data:**

```json theme={null}
{
  "mood": "📅 Busy day!"
}
```

## Example with n8n HTTP Request

1. Use any trigger you want (like new Notion page).
2. Add an **HTTP Request** node:

* Method: POST
* URL: `https://theslow.net/api/slownetsite/update-site-configuration`
* Headers:
  * `X-API-KEY: YOUR_API_KEY`
  * `Content-Type: application/json`
* Body:

```json theme={null}
{
  "bio": "Updated from n8n!"
}
```

## 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).
