Overview
GET
/system/debug-envsystemEnv vars the backend reads (local-only, masked; 404 on deployed envs)
List debug-env.
Responses
200
Masked env entries
- entriesobject[]
Example
{
"entries": [
{
"name": "string",
"value": "string",
"secret": true
}
]
}404
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/system/debug-env" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/system/debug-env", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();