elbeeewon API Reference

Powerful, scalable, and developer-friendly REST APIs designed for modern applications. Build seamless integrations with our intuitive endpoints.

GET /api/v1/user-profile

Description: Retrieve authenticated user's profile information

Authentication: Bearer Token (JWT)

Rate Limit: 1000 requests/min

curl -X GET \\ https://api.elbeeewon.com/api/v1/user-profile \\ -H 'Authorization: Bearer your_token_here'

POST /api/v1/tasks

Description: Create a new task item for the authenticated user

Required Fields: title, priority

Optional Fields: deadline, description

curl -X POST \\ https://api.elbeeewon.com/api/v1/tasks \\ -H 'Authorization: Bearer your_token_here' \\ -H 'Content-Type: application/json' \\ -d '{ "title": "Implement API docs", "priority": "high", "deadline": "2025-12-15" }'