curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/members/search \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"realmMemberId": "<string>",
"dynamicId": "<string>",
"username": "<string>",
"displayName": "<string>",
"imageUrl": "<string>",
"email": "<string>",
"about": "<string>",
"alias": "<string>",
"metadata": {},
"firstVisit": "2023-11-07T05:31:56Z",
"lastVisit": "2023-11-07T05:31:56Z",
"joinedAt": "2023-11-07T05:31:56Z",
"referralId": "<string>",
"credentials": [
{
"format": "<string>",
"publicIdentifier": "<string>",
"oauthProvider": "<string>",
"oauthAccountId": "<string>"
}
],
"balances": [
{
"balance": 123,
"currencyId": "<string>",
"currencyName": "<string>",
"currencyEmoji": "<string>"
}
],
"teamMembership": {
"id": "<string>",
"role": "<string>",
"scopes": [
"<string>"
]
}
}
]
}
API Key
drip-id
, twitter-id
, discord-id
, wallet
, email
, username
Comma-separated list of values to search for
Default Response
The response is of type object
.
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/members/search \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"realmMemberId": "<string>",
"dynamicId": "<string>",
"username": "<string>",
"displayName": "<string>",
"imageUrl": "<string>",
"email": "<string>",
"about": "<string>",
"alias": "<string>",
"metadata": {},
"firstVisit": "2023-11-07T05:31:56Z",
"lastVisit": "2023-11-07T05:31:56Z",
"joinedAt": "2023-11-07T05:31:56Z",
"referralId": "<string>",
"credentials": [
{
"format": "<string>",
"publicIdentifier": "<string>",
"oauthProvider": "<string>",
"oauthAccountId": "<string>"
}
],
"balances": [
{
"balance": 123,
"currencyId": "<string>",
"currencyName": "<string>",
"currencyEmoji": "<string>"
}
],
"teamMembership": {
"id": "<string>",
"role": "<string>",
"scopes": [
"<string>"
]
}
}
]
}