v1

latestOpenAPI 3.1.02026-07-13570316.1 KB
Solana

Create Solana Wallet

Create a new Solana wallet or return the existing wallet for a given label. Labels must be unique within your project.

Authentication: This endpoint requires backend authentication using the x-secret-key header. The secret key should never be exposed publicly.

post/v1/solana/wallets

Request body

labelstring required

Unique label to identify the wallet. Used for retrieval and management.

Example request

{
  "label": "treasury-solana-wallet"
}

Response

Solana wallet retrieved for the provided label.

Example response

{
  "result": {
    "address": "8JBLmveV4YF5AQ7EVnKJgyj6etGgVkPp3tYqQMTu3p5B"
  }
}