Javascript
const url = 'https://api.gnosispay.com/api/v1/ibans/signing-message'; const options = {method: 'GET', body: undefined}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); }
{ "data": { "message": "I hereby declare that I am the address owner." } }
Returns the standard message that users need to sign with their wallet to verify ownership for Monerium IBAN activation.
Successfully retrieved the signing message
The response is of type object.
object