1**This is the documentation for etcd2 releases. Read [etcd3 doc][v3-docs] for etcd3 releases.**
2
3[v3-docs]: ../docs.md#documentation
4
5
6# Miscellaneous APIs
7
8* [Getting the etcd version](#getting-the-etcd-version)
9* [Checking health of an etcd member node](#checking-health-of-an-etcd-member-node)
10
11## Getting the etcd version
12
13The etcd version of a specific instance can be obtained from the `/version` endpoint.
14
15```sh
16curl -L http://127.0.0.1:2379/version
17```
18
19```
20etcd 2.0.12
21```
22
23## Checking health of an etcd member node
24
25etcd provides a `/health` endpoint to verify the health of a particular member.
26
27```sh
28curl http://10.0.0.10:2379/health
29```
30
31```json
32{"health":"true"}
33```
34