Information
Get Account Settings
Information
Get Account Settings
Get information about the current account.
GET
/
accounts
/
settings
curl --request GET \
--url https://api.vaultcord.com/accounts/settings \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": 25204,
"email": "google-play@vaultcord.com",
"role": "plus",
"expiry": 1750018387,
"twoFactorEnabled": 0,
"securityKey": 0,
"created_at": 1710529170
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
account object
Example:
true
The ID of the account
Example:
25204
The email of the account
Example:
"google-play@vaultcord.com"
The subscription plan of the account
Available options:
free
, premium
, plus
Example:
"plus"
The expiration of the subscription plan, in unix timestamp (seconds)
Example:
1750018387
The 2FA status of the account, 0 = OFF, 1 = ON
Example:
0
The WebAuthn status of the account, 0 = OFF, 1 = ON
Example:
0
The creation date of the account, in unix timestamp (seconds)
Example:
1710529170
curl --request GET \
--url https://api.vaultcord.com/accounts/settings \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": 25204,
"email": "google-play@vaultcord.com",
"role": "plus",
"expiry": 1750018387,
"twoFactorEnabled": 0,
"securityKey": 0,
"created_at": 1710529170
}
}