Overview
GET
/system/versionsystemBuild / version info
List version.
Responses
200
version
No response body.
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/system/version" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/system/version", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();