Request a SIWE challenge
curl --request POST \
--url https://{host}/extern/fe/auth/challenge \
--header 'Content-Type: application/json' \
--header 'X-Publishable-Key: <api-key>' \
--data '
{
"address": "<string>"
}
'const options = {
method: 'POST',
headers: {'X-Publishable-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({address: '<string>'})
};
fetch('https://{host}/extern/fe/auth/challenge', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/extern/fe/auth/challenge"
payload = { "address": "<string>" }
headers = {
"X-Publishable-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": "<string>",
"data": {
"message": "<string>",
"nonce": "<string>"
}
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}Request a SIWE challenge
POST
/
extern
/
fe
/
auth
/
challenge
Request a SIWE challenge
curl --request POST \
--url https://{host}/extern/fe/auth/challenge \
--header 'Content-Type: application/json' \
--header 'X-Publishable-Key: <api-key>' \
--data '
{
"address": "<string>"
}
'const options = {
method: 'POST',
headers: {'X-Publishable-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({address: '<string>'})
};
fetch('https://{host}/extern/fe/auth/challenge', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/extern/fe/auth/challenge"
payload = { "address": "<string>" }
headers = {
"X-Publishable-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": "<string>",
"data": {
"message": "<string>",
"nonce": "<string>"
}
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}Last modified on July 3, 2026
Was this page helpful?
⌘I