# Version

The /version route allows you to check the version of a running Meilisearch instance.

# Version object

Name Description
commitSha Commit identifier that tagged the pkgVersion release
commitDate Date when the commitSha was created
pkgVersion Meilisearch version

# Get version of Meilisearch

GET
/version

Get version of Meilisearch.

# Example

curl \
  -X GET 'http://localhost:7700/version'

# Response: 200 Ok

{
  "commitSha": "b46889b5f0f2f8b91438a08a358ba8f05fc09fc1",
  "commitDate": "2019-11-15T09:51:54.278247+00:00",
  "pkgVersion": "0.1.1"
}