List members of a realm with optional pagination, search, and sorting.
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/members/ \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"joinedAt": "2023-11-07T05:31:56Z",
"realmMemberId": "<string>",
"dynamicId": "<string>",
"username": "<string>",
"displayName": "<string>",
"imageUrl": "<string>",
"email": "<string>",
"about": "<string>",
"alias": "<string>",
"firstVisit": "2023-11-07T05:31:56Z",
"lastVisit": "2023-11-07T05:31:56Z",
"lastActive": "2023-11-07T05:31:56Z",
"hasRealmActivity": true,
"referralId": "<string>",
"credentials": [
{
"format": "<string>",
"publicIdentifier": "<string>",
"oauthProvider": "<string>",
"oauthAccountId": "<string>",
"oauthAccountPhotos": [
"<string>"
],
"oauthUsername": "<string>",
"walletName": "<string>",
"chain": "<string>"
}
],
"balances": [
{
"balance": 123,
"currencyId": "<string>",
"currencyName": "<string>",
"currencyEmoji": "<string>"
}
],
"teamMembership": {
"id": "<string>",
"role": "<string>",
"scopes": [
"<string>"
]
},
"notes": "<unknown>",
"metadata": "<unknown>"
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123
}
}API Key
Page number (1-based)
Number of items per page
Search term for username, displayName, or email
Field to sort by
username, displayName, firstVisit, lastVisit, updatedAt, lastActive, createdAt, joinedAt, name, user, status Sort order
asc, desc Was this page helpful?
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/members/ \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"joinedAt": "2023-11-07T05:31:56Z",
"realmMemberId": "<string>",
"dynamicId": "<string>",
"username": "<string>",
"displayName": "<string>",
"imageUrl": "<string>",
"email": "<string>",
"about": "<string>",
"alias": "<string>",
"firstVisit": "2023-11-07T05:31:56Z",
"lastVisit": "2023-11-07T05:31:56Z",
"lastActive": "2023-11-07T05:31:56Z",
"hasRealmActivity": true,
"referralId": "<string>",
"credentials": [
{
"format": "<string>",
"publicIdentifier": "<string>",
"oauthProvider": "<string>",
"oauthAccountId": "<string>",
"oauthAccountPhotos": [
"<string>"
],
"oauthUsername": "<string>",
"walletName": "<string>",
"chain": "<string>"
}
],
"balances": [
{
"balance": 123,
"currencyId": "<string>",
"currencyName": "<string>",
"currencyEmoji": "<string>"
}
],
"teamMembership": {
"id": "<string>",
"role": "<string>",
"scopes": [
"<string>"
]
},
"notes": "<unknown>",
"metadata": "<unknown>"
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123
}
}