v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Solana wallet endpoints

Sign a message with a Solana wallet

Sign a message with a Solana wallet. Authentication with an API key is required.

post/user/{address}/wallet/solana/signature

Path parameters

addressstring required

The address with which to sign the message

Headers

Authorizationstring required

The JWT access token that authorizes the request

Request body

messagestring

Message to sign

Example request

{
  "message": "A plaintext message to sign with the Solana wallet"
}

Response

Signature result

signaturestring

Result of a signing operation

Example response

[
  {
    "signature": "The Base-58 encoded signature result"
  }
]