> For the complete documentation index, see [llms.txt](https://developer.eagle.cool/web-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.eagle.cool/web-api/api/app.md).

# App

## Endpoints Overview

| Method | Endpoint           | Description          |
| ------ | ------------------ | -------------------- |
| GET    | `/api/v2/app/info` | Get application info |

***

## GET /api/v2/app/info <a href="#info" id="info"></a>

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

### Response

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

### Example

```javascript
await fetch("http://localhost:41595/api/v2/app/info").then(r => r.json());
```

***

## App Properties <a href="#properties" id="properties"></a>

| 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) |
