Unique identifier for the user
List Users
Retrieve a list of all users in the system
GET
/usersOverview
Returns a paginated list of all users. Use query parameters to control pagination and filtering.
Parameters
Query Parameters
_limitMaximum number of users to return. Use for pagination.
_startNumber of users to skip. Use with _limit for pagination.
Response
id integername stringFull name of the user
username stringUnique username for the user
email stringEmail address of the user
phone stringPhone number of the user
website stringPersonal website URL
address objectUser’s physical address including street, city, and zipcode
company objectUser’s company information including name and catchphrase
Example Response
[ { "id": 1, "name": "Leanne Graham", "username": "Bret", "email": "Sincere@april.biz", "phone": "1-770-736-8031 x56442", "website": "hildegard.org", "address": { "street": "Kulas Light", "suite": "Apt. 556", "city": "Gwenborough", "zipcode": "92998-3874" }, "company": { "name": "Romaguera-Crona", "catchPhrase": "Multi-layered client-server neural-net" } }]Try it out
GET
/users