For the complete documentation index, see llms.txt. This page is also available as Markdown.

App

The App API provides information about the running Eagle application instance.

Endpoints Overview

Method
Endpoint
Description

GET

/api/v2/app/info

Get application info


GET /api/v2/app/info

Returns information about the running Eagle application, including version numbers and platform details.

Response

{
    "status": "success",
    "data": {
        "version": "4.0.0",
        "prereleaseVersion": null,
        "buildVersion": "build12",
        "platform": "win32"
    }
}

Example


App Properties

Property
Type
Description

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