Skip to main content
POST
/
customer
/
v2
/
auth
/
wallet
/
challenge
Request Wallet Challenge
curl --request POST \
  --url https://orbitflare.com/api/customer/v2/auth/wallet/challenge \
  --header 'Content-Type: application/json' \
  --header 'X-ORBIT-KEY: <api-key>' \
  --data '
{
  "wallet_address": "<string>"
}
'
{
  "success": true,
  "data": {
    "challenge": "<string>",
    "expires_in": 123
  }
}

Authorizations

X-ORBIT-KEY
string
header
required

API key for v1 and v2 (when not using Bearer token)

Body

application/json
wallet_address
string
required

Solana public key (base58)

Required string length: 32 - 44

Response

Challenge issued.

success
boolean
Example:

true

data
object