# API — Database Registry > **Base URL:** `https://console.gisportal.id/api/v1` > **Auth:** `Authorization: Bearer ` + scope `databases:read` --- ## GET /databases List semua database yang terdaftar di registry. **Response 200:** ```json { "data": [ { "id": "uuid", "name": "GIS_Production", "type": "mssql", "host": "10.100.1.25", "port": 1433, "status": "online", "last_checked_at": "2026-06-29T09:00:00+07:00" } ] } ``` --- ## POST /databases/{database}/offline Tandai database sebagai offline (scope: `databases:write`). **Request:** ```json {"reason": "Maintenance scheduled"} ``` **Response 200:** ```json {"status": "offline", "updated_at": "2026-06-29T09:00:00+07:00"} ```