Getting Started

Begin your journey with Eleni's platform with step-by-step instructions, code examples, and interactive tools.

Let's Build Something Cool 💡

1. Set Up Your Environment

All you'll need is an API key from your dashboard and any standard command-line tool or HTTP client.

Install API Tools

We recommend using curl for command-line testing.

brew install curl

Get Your API Key

Create an API key from your dashboard to authenticate requests.

Generate API Key 🔑

You'll be redirected to your account settings

2. Make Your First Request

Basic GET Request

Retrieve sample user data using our Users endpoint

curl -X GET "https://api.eleni.dev/v1/users?user_id=12345" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Request Headers

Authorization Bearer YOUR_API_KEY
Content-Type application/json

Expected Response

{ "id": "12345", "name": "Jane Smith", "email": "jane@example.com", "created_at": "2025-01-15T08:30:00Z" }

3. Try Our Interactive Console

Request

Headers

Body

Response

200 OK
{"message": "Welcome to Eleni API!",
 "status": "success",
 "documentation": "https://api.eleni.dev/docs"}

Need different parameters? Modify the request above and try again!

Next Steps

Explore the API Docs

Dig into advanced features like event creation, multi-format responses, and rate limiting.

View API Docs

Join Our Community

Ask questions, share ideas, and connect with fellow Eleni developers on our forum.

Community Forum