Get your first application integrated with Eseni in 5 minutes or less.
Visit eseni.com and sign up for a developer account. You'll receive a free API key for testing.
Note: Enterprise users should contact sales directly for API access.
Install Eseni's command line interface for rapid prototyping and deployment.
npm install -g @eseni/cli
✅ Verify installation with eseni --version
Initialize a new project in your workspace:
eseni init my-first-app
The CLI will create a .eseni/config.yaml
file with default settings.
Try a simple ping request to verify your setup is working.
curl -H 'Authorization: Bearer YOUR_API_KEY' \
https://api.eseni.dev/v1/ping
Success: You'll see a status response { "status": "pong" }
Secure your API keys with proper access controls and environment variables.
Learn More