GET · Get users

List the human members of the caller's org.

GET /api/users

List humans who are members of the caller's org. Mirrors mem0's "users" API.

This is not the entity store — /api/entities covers free-form mentions (people, orgs, projects, technologies, places, etc. extracted from memory content). /api/users is just org members.

curl https://www.mnueron.com/api/users \
  -H "Authorization: Bearer $MNUERON_API_TOKEN"

Response

{
  "users": [
    {
      "id": "01HQ…",
      "email": "alice@example.com",
      "name": "Alice",
      "role": "owner",
      "last_login_at": 1737060000000,
      "created_at": 1735000000000,
      "email_verified_at": 1735000060000,
      "memory_count": 412
    }
  ]
}

memory_count is the number of memories this user has authored inside the org.

Owners always sort first, then by creation time.

Last updated 2026-05-24edit