v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Profile management endpoints

Register for on-chain record management

The POST call can be used to enable a wallet to manage a domain's on-chain records. Authentication is required using domain owner signature.

post/user/{domain}/wallet

Path parameters

domainstring required

The domain name to register for on-chain record management

Headers

x-auth-domainstring required

The domain to authorize

x-auth-expiresstring required

The expiration time of the signature

x-auth-signaturestring required

The signature generating using domain owner private key

Request body

addressstring

The wallet address

messagestring

Message to sign

signaturestring

The signature created by signing the message with domain owner's private key

Example request

{
  "message": "Sign this message with wallet private key"
}

Response

Wallet registration state

typestring

Description of response type

addressstring

The wallet address

messagestring

Message to sign

Example response

{
  "type": "unstoppabledomains.com/partner.v3.WalletVerificationResult",
  "message": "Sign this message with wallet private key"
}