WANAC API

Welcome to the WANAC Platform REST API. Authenticate and manage programs, fireteams, sessions, journals, habits, and more.

Quickstart

Authenticate, then call protected endpoints with the returned Bearer token.

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com", "password": "your-password"}' \
  "https://wanac-api.kuzasports.com/api/v1/auth/login"

# Use the token returned above
curl -H "Authorization: Bearer <token>" "https://wanac-api.kuzasports.com/api/v1/sessions"

Common endpoints

  • POST /api/v1/auth/register
  • POST /api/v1/auth/login
  • GET /api/v1/sessions
  • GET /api/v1/communities
  • GET /api/v1/programs
  • GET /api/v1/fireteams
  • GET /api/v1/journals
  • GET /api/v1/daily-habits/today

See full reference in Docs.

Need help? Contact support.