Skip to main content
POST
/
auth
/
nonce
Request auth nonce
curl --request POST \
  --url https://community.kuest.com/auth/nonce \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "0x56687bf447db6ffa42ffe2204a05edaa20f55839"
}
'
{
  "nonce": "<string>",
  "message": "<string>",
  "expires_at": "2023-11-07T05:31:56Z"
}
Start the wallet login flow by requesting a nonce and message to sign.

Body

application/json
address
string
required

0x-prefixed EVM address (40 hex chars).

Example:

"0x56687bf447db6ffa42ffe2204a05edaa20f55839"

Response

Nonce issued.

nonce
string
required
message
string
required
expires_at
string<date-time>
required