2016-10-12 07:32:48 -04:00
|
|
|
# Version API
|
|
|
|
|
2020-07-23 14:10:06 -04:00
|
|
|
> Introduced in GitLab 8.13.
|
2016-10-12 07:32:48 -04:00
|
|
|
|
|
|
|
Retrieve version information for this GitLab instance. Responds `200 OK` for
|
|
|
|
authenticated users.
|
|
|
|
|
2020-02-28 22:07:51 -05:00
|
|
|
```plaintext
|
2016-10-12 07:32:48 -04:00
|
|
|
GET /version
|
|
|
|
```
|
|
|
|
|
2020-01-30 10:09:15 -05:00
|
|
|
```shell
|
2020-05-27 20:08:37 -04:00
|
|
|
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/version"
|
2016-10-12 07:32:48 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Example response:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"version": "8.13.0-pre",
|
|
|
|
"revision": "4e963fe"
|
|
|
|
}
|
|
|
|
```
|