Skip to main content
GET
/
auth
/
siwe
/
{address}
Get Siwe message
const options = {method: 'GET'};

fetch('https://gp-auth-module.prod.gnosispay.com/auth/siwe/{address}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "message": "<string>"
}

Path Parameters

address
string
required

Ethereum address

Query Parameters

domain
string
required

Domain requesting authentication

Minimum string length: 1
uri
string<uri>
required

URI of the application

appName
string
required

Application name to display in wallet

Minimum string length: 1

Response

Siwe message retrieved successfully

message
string
required