Quick Start Guide

Get your first application integrated with Eseni in 5 minutes or less.

Step 1: Create Your Account

Create a free account

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.

Step 2: Install CLI

Set up your environment

Install Eseni's command line interface for rapid prototyping and deployment.

npm install -g @eseni/cli

Verify installation with eseni --version

Step 3: Configure Project

Configure your project

Initialize a new project in your workspace:

eseni init my-first-app

The CLI will create a .eseni/config.yaml file with default settings.

Step 4: Your First Request

Test API Interaction

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" }

🔐 Need authentication help?

Next Steps

Security Best Practices

Secure your API keys with proper access controls and environment variables.

Learn More

Advanced Features

Discover async processing, custom workflows, and event hooks.

Learn More

Troubleshooting

Find solutions to common API integration issues and errors.

Learn More
```