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

Version object

NameDescription
commitShaCommit identifier that tagged the pkgVersion release
commitDateDate when the commitSha was created
pkgVersionMeilisearch version

Get version of Meilisearch

GET
/version

Get version of Meilisearch.

Example

curl \
  -X GET 'MEILISEARCH_URL/version'

Response: 200 Ok

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

Was this page helpful?