My API Documentation
GET /users
Get a list of users
Parameters:
No parameters for this endpoint.
Response:
List of user objects
Example:
GET /users -> [{"username": "john_doe", "email": "john@example.com"}, ...]
POST /users
Create a new user
Parameters:
- username - string: Username of the new user
- email - string: Email of the new user
Response:
Created user object
Example:
POST /users -> {"username": "new_user", "email": "new_user@example.com"}