POST
/
v1
/
access
/
signature
/
verify
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"
}

Authorizations

x-api-key
string
header
required

The API key required for accessing protected routes. It should be included in the request headers as x-api-key.

Body

application/json
nonce
string
required

The nonce used for message signing.

Required string length: 32
signature
string
required

The address used as the signature.

address
string
required

The address of the user.

Response

200
application/json
Signature verified successfully.
success
boolean

Indicates whether the signature verification was successful.

Example:

true

message
string

A message indicating the result of the verification.

Example:

"Signature verified successfully"