Skip to main content
GET
/
api
/
v1
/
auth
/
nonce
Generate nonce
const options = {method: 'GET'};

fetch('https://api.valox.co/api/v1/auth/nonce', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
"a1b2c3d4e5f6"

Response

Nonce generated successfully

The response is of type string.

Example:

"a1b2c3d4e5f6"