Skip to main content
POST
/
auth
/
verify
Verify SIWE signature
curl --request POST \
  --url https://api.portal.blend.money/sdk/auth/verify \
  --header 'Content-Type: application/json' \
  --header 'X-Publishable-Key: <api-key>' \
  --data '
{
  "message": "<string>",
  "signature": "<string>"
}
'
{
  "status": "success",
  "data": {
    "token": "<string>",
    "expiresAt": "2023-11-07T05:31:56Z",
    "account": {
      "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "safeAddress": "0x1111111111111111111111111111111111111111",
      "chainsDeployed": [
        8453
      ],
      "userAddress": "0x1111111111111111111111111111111111111111"
    }
  }
}

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

Client-safe Account Type key, for example pk_live_....

Body

application/json
message
string
required
signature
string
required
Pattern: ^0x[0-9a-fA-F]+$

Response

SIWE session created

status
enum<string>
required
Available options:
success
data
object
Last modified on May 4, 2026