Managing Enboe API Keys

Securely manage and use API keys to access Enboe blockchain infrastructure services.

🔓 Generate New Key

Key Security

Military-grade encryption for all active API keys with automatic rotation options.

Usage Analytics

Monitor key usage patterns with real-time dashboard and usage alerts.

Access Control

Fine-grained permissions with role-based access for enterprise teams.

Get Started

API Key Label
Access Level
Expiration
IP Allowlist

Your new API key will be displayed here securely. Remember to store it in a safe place immediately.

By generating an API key you agree to our Terms of Service

Usage Example


const client = new EnboeClient({
    network: 'mainnet',
    apiKey: 'YOUR_API_KEY_HERE' // Keep secure
});

// Verify balance before transaction
client.getBalance('0xYourAddress')
    .then(balance => {
        console.log('Balance:', balance.eth);
        // Initiate transaction
        return client.sendTransaction({
            to: '0xReceiver',
            value: '100000000000000000',
            gasPrice: '1000000000'
        });
    })
    .then(receipt => {
        console.log('Transaction hash:', receipt.transactionHash);
    })
    .catch(error => {
        console.error('Transaction failed:', error);
    });
                
                

Security Best Practices

Never Expose Keys

Never share API keys in code repositories, client applications, or public websites.

  • Do not commit keys to GitHub
  • Never print keys in console logs
  • Use .env files for local development