Debug endpoint (no auth)
GET
/debug
const url = 'https://example.com/api/debug';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/debugReturns deployed version SHA and environment.
Responses
Section titled “ Responses ”Debug info
Media type application/json
object
version
string
environment
string