App
The App API provides information about the running Eagle application instance.
Last updated
The App API provides information about the running Eagle application instance.
GET
/api/v2/app/info
Get application info
Returns information about the running Eagle application, including version numbers and platform details.
{
"status": "success",
"data": {
"version": "4.0.0",
"prereleaseVersion": null,
"buildVersion": "build12",
"platform": "win32"
}
}version
string
Eagle version number (e.g., "4.0.0")
prereleaseVersion
string | null
Pre-release version identifier, or null for stable
buildVersion
string | null
Build version identifier (e.g., "build12")
platform
string
Operating system: "win32" (Windows) or "darwin" (macOS)
Last updated
await fetch("http://localhost:41595/api/v2/app/info").then(r => r.json());