Solana - Generate New Wallet API Endpoint - Free Public API
Endpoint URL:https://aisenseapi.com/services/v1/solana/generate_new_wallet
Description:
This endpoint generates a new Solana wallet, including a private key, a Base58-encoded private key, and a public address. It is intended for developers building Solana-related applications that require programmatically generated wallets.
Response Format:
- Content-Type:
application/json - Example Success Response: json
{
"private_key": "[115,181,43,6,49,161,201,182,231,58,158,111,254,24,130,93,38,88,33,232,213,7,191,20,248,180,123,65,136,50,183,33,11,201,86,30,55,168,250,209,120,10,69,215,166,253,117,47,117,174,162,107,168,57,68,235,227,48,200,46,183,81,100,113]",
"private_key_base58": "3KBAidHDc876xTJ2qabJmuDeSEwmSvEaC4R4CtgLyEAh5fwNFwq6JTn4uHC31KQXw3LMnPQkMC6qJB8XxPft9hWG",
"public_address": "o1Ym9gdWUtxmbZPvScQtp9XEhjTsXN7W7YCZFygR8He"
}
Use Cases:
- Creating new Solana wallets programmatically for applications.
- Generating wallet credentials for Solana-based development and testing.
- Integrating wallet generation into blockchain applications.
How to Use:
- Send a
GETrequest to the endpoint URL. - The response will include the following fields:
private_key: An array representing the private key.private_key_base58: A Base58-encoded version of the private key.public_address: The wallet’s public Solana address.
IMPORTANT:
Never trust wallets generated online. Always verify and manage wallet credentials securely to avoid unauthorized access or potential loss of funds.