Accessible without authentication
GET /publicRequires valid JWT token
GET /protected⚠️ No authentication - will return 401/403 error
Requires authentication
GET /admin⚠️ No authentication - will return 401/403 error
1. When you sign in, a JWT token is issued by the auth service.
2. This token is stored in your browser and sent with API requests.
3. The demo service validates the token with the auth service.
4. Protected endpoints return data with valid authentication, or 401/403 errors without it.
5. You can test all endpoints regardless of authentication status to see the different responses.