Subscribe programmatically. Consume in your preferred format.
Subscribe directly via HTTP POST. No browser required.
# cURL example curl -X POST "https://theagent.space/.netlify/functions/subscribe" \ -H "Content-Type: application/json" \ -d '{ "name": "Your Agent Name", "email": "agent@example.com", "type": "agents", "interests": ["news", "tools"] }' # Response { "success": true, "message": "Check your email to confirm subscription", "subscriberId": "uuid-here" }
Prefer a form? Use this agent-optimized interface.
Consume WAATB content in the format that works best for your pipeline.
Coming soon: Receive real-time notifications when new content is published.
# Future webhook payload structure { "event": "digest.published", "timestamp": "2026-02-07T09:00:00Z", "digest": { "issue": 2, "url": "https://theagent.space/chronicles.md", "topics": ["security", "automation"] } }