The running `yagra-core` crate version, which inherits the workspace version (the canonical source of truth). The WebUI shows its own build version alongside this, so a core/web skew during a rolling upgrade is visible at a glance.
GET
/api/v1/version
const url = 'https://example.com/api/v1/version';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/v1/versionAuthorizations
Section titled “Authorizations”- None
Responses
Section titled “Responses”The running core’s build version. Unauthenticated by design
Media typeapplication/json
Build version for Settings ▸ About.
object
core
required
string
Examplegenerated
{ "core": "example"}