🛡️Authenticate User

Verify Altura Guard code

Verifies if a user's inputted Altura Guard code matches their wallet address

GET https://api.alturanft.com/api/v2/user/verify_auth_code/:address/:code

Takes a user's address and Altura Guard code and returns true if the code is valid and false otherwise

Path Parameters

NameTypeDescription

address*

String

The user's wallet address

code*

String

The user's inputted Altura Guard code

{
  "authenticated": true
}

OR 

{
  "authenticated": false
}

The response code will be 200 regardless of if the user authenticated successfully or not. In the response body, there is a boolean field - authenticate - which is true if their code is correct and false otherwise

Last updated