Skip to main content
GET
/
api
/
users
/
lookup
Lookup Users
curl --request GET \
  --url https://api.example.com/api/users/lookup \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "email": "<string>",
      "name": "<string>",
      "roles": []
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Key
string | null

Query Parameters

q
string | null
limit
integer
default:50
Required range: 1 <= x <= 200

Cookies

antidote_session
string | null

Response

Successful Response

data
UserSummary · object[]
required