GET
/
members
/
{userId}
curl --request GET \
  --url https://api.vaultcord.com/members/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": 10738444,
    "serverId": 12,
    "userid": "1215624435520897090",
    "created_at": 1717892769,
    "email": "notexttospeech@gmail.com",
    "ip": "131.247.47.171"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

userId
string
required

Discord snowflake ID for the member/user.

Response

200
application/json
resource retrieved
success
boolean
Example:

true

data
object