# getCodeVersion

From **Kubernetes**.

`GET /version/`

get the version information for this server

## Responses

### `200`

OK

### `application/json`

- Type: `object`

Info contains versioning information. how we'll want to distribute that information.

```json
{"description":"Info contains versioning information. how we'll want to distribute that information.","properties":{"buildDate":{"default":"","type":"string"},"compiler":{"default":"","type":"string"},"emulationMajor":{"description":"EmulationMajor is the major version of the emulation version","type":"string"},"emulationMinor":{"description":"EmulationMinor is the minor version of the emulation version","type":"string"},"gitCommit":{"default":"","type":"string"},"gitTreeState":{"default":"","type":"string"},"gitVersion":{"default":"","type":"string"},"goVersion":{"default":"","type":"string"},"major":{"default":"","description":"Major is the major version of the binary version","type":"string"},"minCompatibilityMajor":{"description":"MinCompatibilityMajor is the major version of the minimum compatibility version","type":"string"},"minCompatibilityMinor":{"description":"MinCompatibilityMinor is the minor version of the minimum compatibility version","type":"string"},"minor":{"default":"","description":"Minor is the minor version of the binary version","type":"string"},"platform":{"default":"","type":"string"}},"required":["major","minor","gitVersion","gitCommit","gitTreeState","buildDate","goVersion","compiler","platform"],"type":"object"}
```

### `401`

Unauthorized

## Request examples

### cURL

```shell
curl --request GET \
  --url '/version/'
```
