Retrieve server build metadata
Returns the server's advertised semantic version, git metadata, build timestamp, and optional capability flags. The endpoint is intentionally unauthenticated so bootstrap tooling can call it before API keys exist.
curl -X GET "http://localhost:8080/v1/system/info"{
"version": "string",
"major": 0,
"minor": 0,
"patch": 0,
"dirty": true,
"gitCommit": "string",
"gitDescribe": "string",
"buildTime": "2019-08-24T14:15:22Z",
"capabilities": {
"property1": "string",
"property2": "string"
}
}Empty