Generating a Keypair
The Banking API uses EdDSA authentication with Ed25519 keys. You need to generate a keypair (public and private) before creating a service account.Method 1: Online Tool (Easiest)
Use our online tool to generate keys directly in your browser:Generate Keys Online
Generate an Ed25519 keypair instantly in your browser
Method 2: Terminal (Recommended)
Use thessh-keygen command to generate keys:
service-account-key- Private key (store securely)service-account-key.pub- Public key (used for registration)
Method 3: OpenSSL
To use with the API, you’ll need to convert the public key to OpenSSH format (
ssh-ed25519 ...).Method 4: Programmatically
Node.js
Python
Public Key Format
The API accepts public keys in OpenSSH format:Next Step
After generating keys, create a service account in the dashboard:Create Service Account
Configure permissions and allowed IPs in the Conta Digital dashboard
