Skip to main content

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:
{
  "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:
{
  "bio": "Updated from n8n!"
}

Authentication

This endpoint requires an API key. You can retrieve an API key from your dashboard. Include it in the X-API-KEY header:
X-API-KEY: YOUR_API_KEY_HERE
For more details, see the Authentication Guide.

Need Further Assistance?

If you have any questions or encounter issues, please don’t hesitate to reach out to our support team.