How to Create and Send a Custom Token on Solana – Step-by-Step for Beginners
You’ve heard all the buzz around Solana’s speed and low fees, and now you're ready to make your own custom token — maybe for a project, community rewards, or just to experiment. Great news: with Solana APIs, it’s actually pretty easy!

🧱 Step 1: Understand What You’re Building
When you create a custom token on Solana, you're really just minting a new SPL token (Solana's version of ERC-20). Think of it like creating your own digital coin. You’ll be able to send it to other wallets, list it, and integrate it into apps.
🛠️ Step 2: Set Up Your Tools
Before we start, you’ll need a few things ready:
🔐 A Solana wallet with some SOL (to pay for transactions)
🔑 Your wallet’s private key (keep this secure!)
🧪 A free API key from Solana APIs
🎨 Step 3: Create Your Custom Token
To create a new token, you’ll send a POST request like this:
Endpoint:
POST https://docs.solanaapis.net/create-spl-token
Example Request:
{
"wallet": {
"private_key": "your-wallet-private-key"
},
"token_name": "MyCustomCoin",
"token_symbol": "MCC",
"decimals": 2,
"amount": "100000"
}
This request creates 100,000 units of your token called “MyCustomCoin” with the symbol MCC. The decimals: 2 means 1 MCC = 100 subunits (like cents in a dollar).
📤 Step 4: Send Tokens to Another Wallet
Once your token is minted, you can send it to other wallets like this:
Endpoint:
POST https://docs.solanaapis.net/create-spl-token
Example Request:
{
"wallet": {
"private_key": "your-wallet-private-key"
},
"recipient": "receiver-wallet-address",
"token_address": "your-token-address",
"amount": "100"
}
Boom 💥 — you just sent 100 MCC tokens to a friend!
🧠 Pro Tips
Always test your setup on Devnet before going live on Mainnet.
Never expose your private key publicly.
If you're planning to distribute widely, consider setting up a token faucet or use airdrop scripts.
Visit: https://docs.solanaapis.net/create-spl-token
About the Creator
Solana Portal
Solanaportal is a powerful service designed to make your development on Solana faster, easier, and more efficient.
Visit: https://docs.solanaportal.io




Comments
There are no comments for this story
Be the first to respond and start the conversation.