Verifies a user’s signature using a previously generated nonce.
cURL
curl --request POST \ --url https://api.oneofnone.io/v1/access/signature/verify \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "nonce": "<string>", "signature": "<string>", "address": "<string>" } '
{ "success": true, "message": "Signature verified successfully" }
The API key required for accessing protected routes. It should be included in the request headers as x-api-key.
x-api-key
The nonce used for message signing.
32
The address used as the signature.
The address of the user.
Signature verified successfully.
Indicates whether the signature verification was successful.
true
A message indicating the result of the verification.
"Signature verified successfully"