---
title: "Retrieve engine configuration"
method: GET
path: "/api/engine"
tags: ["Engine"]
---

# Retrieve engine configuration

`GET /api/engine`

Returns the current configuration settings of the OIBus engine

## Response `200`

The engine settings

- EngineSettingsDTO — Engine settings Data Transfer Object. Represents the configuration settings for the engine.
  - `id` string, required — The unique identifier of the entity.
  - `createdBy` UserInfo, required — Represents the user who performed an action, with a computed display name.
    - `id` string, required — The unique identifier of the user.
    - `friendlyName` string, required — A human-readable display name for the user. "OIAnalytics" for the oianalytics system user, "Admin" for the admin login, or "Firstname Lastname (login)" for regular users.
  - `updatedBy` UserInfo, required — Represents the user who performed an action, with a computed display name.
    - `id` string, required — The unique identifier of the user.
    - `friendlyName` string, required — A human-readable display name for the user. "OIAnalytics" for the oianalytics system user, "Admin" for the admin login, or "Firstname Lastname (login)" for regular users.
  - `createdAt` string, required — Represents an instant in time as an ISO 8601 string.
  - `updatedAt` string, required — Represents an instant in time as an ISO 8601 string.
  - `name` string, required — The name of the engine.
  - `port` number, double, required — The port on which the engine listens.
  - `version` string, required — The version of the engine.
  - `launcherVersion` string, required — The version of the launcher.
  - `proxyEnabled` boolean, required — Whether the proxy is enabled.
  - `proxyPort` number, double, nullable, required — The port for the proxy, if enabled.
  - `logParameters` object, required — Logging parameters for different outputs.
    - `oia` object, required — OIA logging configuration.
      - `interval` number, double, required — The interval in seconds for sending logs to OIA.
      - `level` 'silent' | 'error' | 'warn' | 'info' | 'debug' | 'trace', required — Type representing a log level.
    - `loki` object, required — Loki logging configuration.
      - `password` string, required — The password for Loki authentication.
      - `username` string, required — The username for Loki authentication.
      - `address` string, required — The address of the Loki server.
      - `interval` number, double, required — The interval in seconds for sending logs to Loki.
      - `level` 'silent' | 'error' | 'warn' | 'info' | 'debug' | 'trace', required — Type representing a log level.
    - `database` object, required — Database logging configuration.
      - `maxNumberOfLogs` number, double, required — The maximum number of logs to keep in the database.
      - `level` 'silent' | 'error' | 'warn' | 'info' | 'debug' | 'trace', required — Type representing a log level.
    - `file` object, required — File logging configuration.
      - `numberOfFiles` number, double, required — The number of log files to keep.
      - `maxFileSize` number, double, required — The maximum size of a log file in bytes.
      - `level` 'silent' | 'error' | 'warn' | 'info' | 'debug' | 'trace', required — Type representing a log level.
    - `console` object, required — Console logging configuration.
      - `level` 'silent' | 'error' | 'warn' | 'info' | 'debug' | 'trace', required — Type representing a log level.

## Changes

- **2026-03-25** `cdb5b7ea7199` — 2 warning, 4 info
  - removed the optional property `creationDate` from the response with the `200` status
  - removed the optional property `lastEditInstant` from the response with the `200` status
  - added the required property `createdAt` to the response with the `200` status
  - added the required property `createdBy` to the response with the `200` status
  - …2 more
- **2026-03-20** `108013c94629` — 4 breaking, 2 info
  - removed the required property `createdAt` from the response with the `200` status
  - removed the required property `createdBy` from the response with the `200` status
  - removed the required property `updatedAt` from the response with the `200` status
  - removed the required property `updatedBy` from the response with the `200` status
  - …2 more
- **2026-03-19** `fb56929c0675` — 2 warning, 4 info
  - removed the optional property `creationDate` from the response with the `200` status
  - removed the optional property `lastEditInstant` from the response with the `200` status
  - added the required property `createdAt` to the response with the `200` status
  - added the required property `createdBy` to the response with the `200` status
  - …2 more
- …earlier changes not shown

[Full history](https://skmtc.dev/optimistiksas/apis/oibus-api/changes/api/engine/get.md)

---

[API](https://skmtc.dev/optimistiksas/apis/oibus-api.md) · [All operations](https://skmtc.dev/optimistiksas/apis/oibus-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/optimistiksas/oibus-api/revisions/cdaffd75b4a0/schema)
