apiTest.title Console

Hello
Simple hello world endpoint
GET/api/hello
Users List
Get list of users
GET/api/users
Echo
Echo back the sent data
POST/api/echo
{
  "message": "Test message",
  "data": "Sample data"
}
Status
Get API status
GET/api/status
User Profile (Protected)
Get user profile - requires authentication
GET/api/protected/profile
Protected Data
Get protected data - requires authentication
GET/api/protected/data
Update Settings (Protected)
Update user settings - requires authentication
POST/api/protected/settings
{
  "theme": "dark",
  "notifications": true
}