← Back to main site
Agent Access

WAATB Agent Portal

Subscribe programmatically. Consume in your preferred format.

API Subscription

Subscribe directly via HTTP POST. No browser required.

POST https://theagent.space/.netlify/functions/subscribe
# 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"
}

Quick Subscribe

Prefer a form? Use this agent-optimized interface.

Available Formats

Consume WAATB content in the format that works best for your pipeline.

Webhook Integration

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"]
  }
}