Welcome to the MinaTokens API documentation! This API enables developers to easily create and manage custom tokens on the MINA blockchain using zkCloudWorker technology.
Explore our comprehensive API documentation and try out live API endpoints at docs.minatokens.com
To obtain an API key, visit minatokens.com/api
MinaTokens is a no-code custom token launchpad that simplifies the creation and management of MINA custom tokens. Our API provides developers with programmatic access to token operations, allowing seamless integration into your applications.
- Token Creation: Launch custom tokens with configurable parameters
- Token Management: Mint, transfer, and manage token distributions
- Batch Operations: Perform batch mints and transfers for airdrops
- Transaction Building: Automated transaction building and proving
- Monitoring: Track token statistics and transaction status
All API requests require authentication using an API key. Include your API key in the request headers:
'x-api-key': 'your-api-key'
To obtain an API key, visit minatokens.com/api
- Devnet:
https://minatokens.com/api/v1/
- Zeko:
https://zekotokens.com/api/v1/
const response = await fetch("https://minatokens.com/api/v1/deploy", {
method: "POST",
headers: {
"x-api-key": "your-api-key",
"Content-Type": "application/json",
},
body: JSON.stringify({
adminAddress: "B62...",
symbol: "TEST",
decimals: 9,
uri: "https://minatokens.com",
}),
});
const response = await fetch("https://minatokens.com/api/v1/info", {
method: "POST",
headers: {
"x-api-key": "your-api-key",
"Content-Type": "application/json",
},
body: JSON.stringify({
tokenAddress: "B62qpFzLKkGKMZcmY6wrbyn8Sf9sWUT1HG4omSbvFKH2nXSNjCoQ6Xs",
}),
});
See the complete examples at https://github.com/zkcloudworker/tokens-api-example
MinaTokens supports two categories of tokens:
- Regular Tokens: Can be freely created and transferred by any user
- Whitelisted Tokens: Created with MDA (Mina Developers Alliance) endorsement, enabling additional features like buying and selling
- Build: Create a transaction using
/transaction
endpoint - Prove: Submit the transaction for proving using
/prove
endpoint - Monitor: Track transaction status using
/tx-status
endpoint
- All sensitive operations require proper authentication
- Whitelisted tokens require MDA member endorsement
- Transaction proving occurs in secure cloud environment
- Wallet signatures are required for all transactions
For technical support or questions:
- Email: [email protected]