Skip to main content
POST
/
extern
/
fe
/
auth
/
verify
Verify a SIWE signature and issue a session JWT
curl --request POST \
  --url https://{host}/extern/fe/auth/verify \
  --header 'Content-Type: application/json' \
  --header 'X-Publishable-Key: <api-key>' \
  --data '
{
  "message": "<string>",
  "signature": "<string>"
}
'
{
  "status": "<string>",
  "data": {
    "token": "<string>",
    "expiresAt": "2023-11-07T05:31:56Z",
    "account": {
      "accountId": "<string>",
      "safeAddress": "<string>",
      "chainsDeployed": [
        123
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.blend.money/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Publishable-Key
string
header
required

Tenant publishable key (pk_live_...)

Body

application/json
message
string
required
Required string length: 1 - 4096
signature
string
required
Required string length: 132 - 2048
Pattern: ^0x(?:[0-9a-fA-F]{2})+$

Response

Success

status
string
required
Allowed value: "success"
data
object
required
Last modified on May 29, 2026