Skip to main content

Info (Debug Endpoint)

Base path: /info or /api/info

Internal debug endpoint for deployment verification. Returns masked environment metadata, build info, and git commit/branch. Not part of the public API contract.

GET /info

GET /api/info

Auth: None required Tenant: N/A (debug only)

Response (200)

{
"build": { "packageVersion": "...", "startTime": 1234567890 },
"deployment": { "platform": "...", "service": "...", "branch": "...", "commit": "..." },
"env": { "NODE_ENV": "prod", "RENDER_SERVICE_NAME": "***name", ... }
}

Sensitive values are masked (last 4 characters only). Use to verify what is running in each environment.