🚀 c0loria API

Welcome to the c0loria REST API

Base URL

https://api.c0loria.com/api

Available Endpoints

🔐 Authentication

👤 Users

🎯 Objectives

✅ Tasks

🔄 Habits

Authentication

All protected endpoints require a JWT token in the Authorization header:

Authorization: Bearer YOUR_JWT_TOKEN

Response Format

All responses follow this format:

{
  "success": true,
  "data": {
    // Response data
  }
}

// Or on error:
{
  "error": {
    "message": "Error message",
    "code": "ERROR_CODE",
    "statusCode": 400
  }
}

📚 For detailed documentation, see README.md