GET
/
api
/
v1
/
realms
/
{realmId}
/
members
/
search
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>"
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key

Query Parameters

type
enum<string>
required
Available options:
drip-id,
twitter-id,
discord-id,
wallet,
email,
username
values
string
required

Comma-separated list of values to search for

Response

200
application/json
Default Response
data
any[]