Search for a DRIP user in a realm by their drip id, twitter id, discord id, wallet address, email, or username
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/members/search \
--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,
"credentials": {
"access": true,
"approved": true,
"reason": "<string>"
}
}
}API Key
drip-id, twitter-id, discord-id, wallet, email, username Comma-separated list of values to search for
Page number (1-based)
Number of items per page
Default Response
Was this page helpful?
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/members/search \
--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,
"credentials": {
"access": true,
"approved": true,
"reason": "<string>"
}
}
}