Skip to main content
GET
/
users
curl --location --request GET 'https://api.fonder.com/users?page=1&limit=10' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
  "data": [
    {
      "id": "9c684377-aa26-4fd4-a660-c1afbf5d1a06",
      "username": "Federico",
      "mail": "[email protected]",
      "role": "ADMIN",
      "phone": "+5491144444444",
      "accounts": ["caja nueva"]
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 10,
  "totalPages": 1,
  "hasNext": false,
  "hasPrevious": false
}

Query Parameters

page
integer
default:"1"
Page number for pagination
limit
integer
default:"10"
Number of items per page

Response

data
User[]
Array of user objects
total
number
Total number of users
page
number
Current page number
limit
number
Number of items per page
totalPages
number
Total number of pages
hasNext
boolean
Whether there are more pages
hasPrevious
boolean
Whether there are previous pages

User Object

id
string
Unique user identifier (UUID)
username
string
User’s username
mail
string
User’s email address
role
string
User’s role (e.g., “ADMIN”)
phone
string
User’s phone number
accounts
string[]
Array of account names the user has access to
curl --location --request GET 'https://api.fonder.com/users?page=1&limit=10' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
  "data": [
    {
      "id": "9c684377-aa26-4fd4-a660-c1afbf5d1a06",
      "username": "Federico",
      "mail": "[email protected]",
      "role": "ADMIN",
      "phone": "+5491144444444",
      "accounts": ["caja nueva"]
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 10,
  "totalPages": 1,
  "hasNext": false,
  "hasPrevious": false
}