Skip to main content
POST
/
auth
/
verify
Verify Signature
curl --request POST \
  --url https://api.faces.sh/auth/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "<string>",
  "signature": "<string>",
  "nonce": "<string>"
}
'
{
  "success": true,
  "messages": [],
  "data": {
    "token": "<string>",
    "iam_id": "<string>",
    "is_admin": true
  },
  "error": "<string>",
  "meta": {}
}

Body

application/json
address
string
required
signature
string
required
nonce
string
required

Response

Successful Response

success
boolean
required
messages
string[] | null
data
VerifySignatureResponse · object
error
meta
Meta · object