GET
/
users
curl --request GET \
  --url https://app.happyrobot.ai/api/v1/users \
  --header 'authorization: <authorization>'
[
  {
    "id": "<string>",
    "email": "jsmith@example.com",
    "first_name": "<string>",
    "last_name": "<string>",
    "image_url": "<string>"
  }
]

Headers

authorization
string
required

Your API key for authentication. Use Bearer format.

Example:

"Bearer API_KEY"

Response

200
application/json
200
id
string
required

The user's unique identifier.

email
string
required

The user's email.

first_name
string

The user's first name.

last_name
string

The user's last name.

image_url
string

The user's profile image. an be a URL or a base64 encoded image.