Skip to main content
GET
/
users
List users
curl --request GET \
  --url https://dashboard.hologram.io/api/1/users \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "limit": 3,
  "size": 2,
  "data": [
    {
      "id": 12345,
      "email": "john.doe@example.com",
      "first": "John",
      "last": "Doe",
      "role": "",
      "registered": "2023-03-15 10:30:00",
      "is_verified": 1,
      "personal_org": 67890
    },
    {
      "id": 54321,
      "email": "admin@example.com",
      "first": "Jane",
      "last": "Smith",
      "role": "",
      "registered": "2022-01-01 09:00:00",
      "is_verified": 1,
      "personal_org": 98765
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.hologram.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.

You can find your API key on the Hologram Dashboard under Account Settings.

Query Parameters

limit
integer

Maximum number of items to return in a single request. For endpoints that support pagination, use this with corresponding /pages endpoints to manage large result sets.

Example:

50

Response

200 - application/json

List of users

success
boolean
limit
integer
size
integer
data
object[]