MyOFI Services API
Go modular serving CRM, billing, finance, HR, network provisioning, and field operations.
PostgreSQL0ms
Redis0ms
Uptime2d 3h 13m
Runtimego1.25.1
Modules Active 291 / 291
291 compiled

Quick Access
Quick Start
terminal
# 1. Get a JWT token
curl -sX POST http://__HOST__/api/v1/auth/login \
  -H "Content-Type: application/json" \
  -d '{"username":"admin","password":"…"}' \
  | jq '.token'

# 2. Call a protected endpoint
curl -s http://__HOST__/api/v1/crm/analytics/summary \
  -H "Authorization: Bearer <token>"

# 3. This page as JSON
curl -s "http://__HOST__/?format=json" | jq