Skip to main content
Create Solana wallets in bulk with Launchpad Trade API
POST/wallets/create
Create one or more Solana wallets on demand. Private keys are returned in the response and never stored on our servers — save them immediately.
Private keys are not stored. The API returns each wallet’s private key exactly once. If you lose it, there is no way to recover it.

Quick Start

curl -X POST https://api.launchpad.trade/wallets/create \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "count": 10
  }'

Parameters

ParameterTypeDescription
countnumberNumber of wallets to create. Integer between 1 and 100

How It Works

1

Create wallets

You specify how many wallets you need (up to 100). The API generates Solana keypairs and returns them instantly.
2

Save private keys

Store every private key securely. The API does not keep a copy — this is your only chance to save them.
3

Fund wallets

Wallets are created with 0 SOL. Use Distribute to send SOL to your new wallets.
4

Initialize (optional)

New wallets work immediately, but initializing them with Initialize ensures maximum speed on the first transaction.

Response

{
  "success": true,
  "data": {
    "wallets": [
      {
        "publicKey": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
        "privateKey": "5K7gT..."
      },
      {
        "publicKey": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
        "privateKey": "3Jd8f..."
      },
      {
        "publicKey": "3Hk9rPqM2nL5vYz7xKmNpQrS8tUvWxYz1aBcDeFgHiJk",
        "privateKey": "9Pm2x..."
      }
    ],
    "count": 10
  }
}

Errors

{
  "success": false,
  "error": {
    "code": "INVALID_COUNT",
    "message": "Count must be between 1 and 100"
  }
}
CodeMessageCause
INVALID_COUNTCount must be between 1 and 100count is out of range or missing
RATE_LIMITRate limit exceededToo many requests — see Rate Limits
INTERNAL_ERRORInternal server errorRetry or contact support

Notes

  • This is a synchronous operation — wallets are generated and returned instantly with no delay
  • Wallets are created with 0 SOL balance — use Distribute to fund them

What’s Next?

Distribute SOL

Fund your new wallets with SOL

Initialize Wallets

Prepare wallets for optimal trading speed

Check Balance

View SOL and token balances

Buy Tokens

Start trading with your wallets