Skip to main content

Documentation

The fastest way into the Space Duck docs stack, from first steps to architecture and security.

Quick access

Find what you need fast

Jump straight to the most-reached paths in the docs stack.

Docs hub

Documentation — Everything you need to build with Space Duck

Start here when you want the shortest path from understanding to execution. This page gathers the core docs surfaces for operators, builders, and contributors working across the Space Duck stack.

Clean entry points for setup, API usage, deployment, skills, architecture, security, and FAQ — all in one place.
Core documentation

Choose a lane and keep moving

Every card below is a clear entry point into a specific part of the platform. Internal pages stay within Duck Galaxy. External links go straight to the repository source of truth.

API Quick Reference

Copy-ready curl examples

Base URL: https://czt9d57q83.execute-api.us-east-1.amazonaws.com/prod

Hatch a duckling
curl -X POST /beak/hatch \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com",
       "password":"secret"}'
Auth — sign in
curl -X POST /beak/auth \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com",
       "password":"secret"}'
Get platform metrics
curl https://czt9d57q83.execute-api\
  .us-east-1.amazonaws.com/prod\
  /beak/metrics
Log a pageview
curl -X POST /beak/pageview \
  -H "Content-Type: application/json" \
  -d '{"page":"/docs.html",
       "card":"api-reference",
       "rating":"yes"}'