High-performance REST API built with Hono + Bun. Encrypted, validated, production-ready.
Customer relationship management with task tracking, pipeline boards, team collaboration, and activity logs.
Full academic management system: students, lecturers, courses, grading, scheduling, and institutional analytics.
Personal and family budgeting platform with income/expense tracking, categories, goals, and monthly reports.
Executive Information System for accounting: financial statements, ledger, journal entries, and real-time dashboard.
Google Drive-style storage API backed by Cloudflare R2 object storage and PostgreSQL metadata.
Upcoming projects in the ecosystem: E-commerce API, IoT Gateway, Notification Service, and more.
Google Drive-style file management: nested folders, upload by folder_uid or path, copy/move/rename/star, version history, trash + restore + purge, and full-text search.
Authenticate via Google OAuth token passed in a single header. Server validates against Google's API.
Login with username/password to receive JWT. Use token for subsequent requests via Authorization header.
Public key header for identity + encrypted request body. For high-security endpoints and inter-service communication.
Auto-generated endpoint reference
Send requests and inspect responses
Response will appear here
PostgreSQL tables via Supabase
Integration guide
Include your public key in every request.
POST/PUT/PATCH bodies must be encrypted with the server public key.
All endpoints return:
{
"status": "success" | "error",
"error_message": null,
"data": { ... },
"version": "1.0.0"
}
curl -X POST https://api.rayeen.web.id/auth/login \ -H "Content-Type: application/json" \ -H "x-public-key: YOUR_KEY" \ -d '{"email":"a@b.com","password":"enc"}'
AI agent configuration