--- layout: "http" page_title: "HTTP API: /sys/init" sidebar_current: "docs-http-sys-init" description: |- The '/sys/init' endpoint is used to initialize a new Nomad. --- # /sys/init ## GET
Description
Return the initialization status of a Nomad.
Method
GET
Parameters
None
Returns
```javascript { "initialize": true } ```
## PUT
Description
Initializes a new Nomad. The Nomad must've not been previously initialized.
Method
PUT
Parameters
Returns
A JSON-encoded object including the master keys and initial root token: ```javascript { "keys": ["one", "two", "three"], "root_token": "foo" } ```