Skip to main content
GET
/
version
cURL
curl --unix-socket /run/miru/miru.sock \
  --request GET \
  --url http://localhost/v0.2/version
{
  "version": "v1.0.0",
  "git_commit": "a1b2c3d4",
  "api_version": "v1-0",
  "api_git_commit": "a1b2c3d4",
  "rust_version": "1.93.0",
  "build_date": "2026-02-24T10:30:00Z",
  "os": "linux",
  "arch": "aarch64"
}

Response

200 - application/json

Successfully retrieved the version of the agent.

version
string
required

The version of the agent.

Example:

"v1.0.0"

git_commit
string
required

The git commit of the agent.

Example:

"a1b2c3d4"

api_version
string
required

The API version of the agent.

Example:

"v1-0"

api_git_commit
string
required

The git commit of the API.

Example:

"a1b2c3d4"

rust_version
string
required

The version of Rust.

Example:

"1.93.0"

build_date
string<date-time>
required

The build date of the agent.

Example:

"2026-02-24T10:30:00Z"

os
string
required

The operating system of the agent.

Example:

"linux"

arch
string
required

The architecture of the agent.

Example:

"aarch64"

Last modified on March 13, 2026