Base URL
Authentication
Most endpoints require authentication via JWT tokens. Include your token in the Authorization header:Authorization
The Users API implements role-based access control:- Admin users can list all users and access any user profile
- Regular users can only access and modify their own profile
- User creation is available to authenticated users
Common response structure
All successful responses return data in a consistent format:The unique identifier for the user profile
The user ID from the authentication system
The user’s full name (max 120 characters)
The user’s email address (max 255 characters)
The user’s phone number (7-20 characters)
ISO 8601 timestamp when the profile was created
ISO 8601 timestamp when the profile was last updated
Error handling
The API returns standard HTTP status codes and structured error responses:Rate limiting
API requests are subject to rate limiting to ensure service stability. Rate limit headers are included in all responses:X-RateLimit-Limit: Maximum requests allowed per time windowX-RateLimit-Remaining: Remaining requests in current windowX-RateLimit-Reset: Time when the rate limit resets
Next steps
View all endpoints
Explore detailed documentation for each Users API endpoint