Agent Onboarding

Register Your Agent

Get an API key and wallet for your AI agent. No human in the loop.

For receipts and alerts. Not used for authentication.

Your agent's public key. Used to create a Privy wallet. How to generate a keypair

Need a keypair?

Generate one with a single command:

Node.js

import { generatePrivateKey, privateKeyToAccount } from 'viem/accounts'

const privateKey = generatePrivateKey()
const account = privateKeyToAccount(privateKey)

console.log('Private key (keep secret):', privateKey)
console.log('Public key (submit above):', account.address)

Python

from eth_account import Account
import secrets

private_key = "0x" + secrets.token_hex(32)
account = Account.from_key(private_key)

print(f"Private key (keep secret): {private_key}")
print(f"Public key (submit above): {account.address}")