Gen-Endpoint
Back to API List

User Management API

Application
5 Endpoints

A comprehensive API for managing user accounts, including CRUD operations.

Internal API - Hosted by this App
API Endpoints & Usage
Explore and interact with the available endpoints for the User Management API. These API routes are live!
GET

/api/users

Retrieves a list of users. Supports an optional `limit` query parameter (e.g., `?limit=5`) to control the number of users returned. If no limit is provided, all users are returned (up to the total of 25 mock users).

Try it out

You can add or change query parameters in the path above (e.g., ?name=User).

GET

/api/users/{userId}

Retrieves a specific user by their ID. Replace {userId} with an actual ID like `usr_1`.

Try it out

Replace placeholders (e.g., {userId}) with actual values in the path above. You can also add/edit query parameters (e.g., ?key=value).

POST

/api/users

Creates a new user.

Try it out
PUT

/api/users/{userId}

Updates an existing user by ID. Replace {userId} with an actual ID like `usr_1`.

Try it out

Replace placeholders (e.g., {userId}) with actual values in the path above.

DELETE

/api/users/{userId}

Deletes a user by ID. Replace {userId} with an actual ID like `usr_2`.

Try it out

Replace placeholders (e.g., {userId}) with actual values in the path above.

    User Management API - Free Public API | Gen-Endpoint