Get Started with Epsilon
Build your first application in minutes with our step-by-step guide. Whether you're new or experienced, we've got you covered.
Video: 3 min quick start guide
3 Easy Steps to Get Started
Create Account
Sign up with your email to get immediate access to our free tier and generate your API keys.
curl -X POST https://api.epsilon.dev/auth/register \
-H "Content-Type: application/json" \
-d '{
"email": "your_email@example.com",
"password": "your_password",
"username": "your_awesome_username"
}
Install SDK
Choose from our language-specific SDKs or use our REST APIs directly with your favorite HTTP client.
npm install @epsilon/core
curl -X GET https://api.epsilon.dev/data \
-H "Authorization: Bearer YOUR_KEY"
Make Your First Request
With everything setup, it's time to make your first real request. This will return your account summary.
< const client = new EpsilonClient('API_KEY'); // Initialize client
< client.getAccount()
curl -X GET 'https://api.epsilon.dev/whoami' \
-H 'Authorization: Bearer YOUR_API_KEY'
Additional Resources
API Documentation
Comprehensive reference for all available endpoints and request formats.
View DocsSample Projects
Ready-to-run examples showing common integration patterns and best practices.
View ExamplesNeed a Developer?
Need more than this starter guide can explain? Our team can help you integrate Epsilon in your specific use case.
Contact Our Team