2020-10-28 11:08:49 -04:00
---
2021-08-02 11:08:56 -04:00
stage: Ecosystem
group: Integrations
2020-11-26 01:09:20 -05:00
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-10-28 11:08:49 -04:00
---
2021-09-07 08:11:26 -04:00
# Version API **(FREE)**
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"
}
```