Skip to main content

List

Retrieve a paginated list of users.

Endpoint

GET /users

Query Parameters

ParameterTypeDescription
pagenumberPage number
limitnumberItems per page

Example Request

GET /users?page=1&limit=10

Response

{
"data": [
{
"id": "usr_12345",
"name": "John Doe",
"email": "john@example.com"
},
{
"id": "usr_67890",
"name": "Jane Smith",
"email": "jane@example.com"
}
],
"meta": {
"page": 1,
"limit": 10,
"total": 25
}
}