# Settings

# Get Settings

GET
/settings

# Example Request

curl --location --request GET 'https://yourwebsite.com/api/settings' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {api_key}' \
--header 'Authorization: Bearer {api_key}'

# Example Response

{
  "remember_me": true,
  "notifications_signup_email": true,
  "forgot_password": true,
  "login_reset_token_lifetime": 30,
  "throttle_enabled": true,
  "throttle_attempts": 10,
  "throttle_lockout_time": 2,
  "reg_enabled": false,
  "reg_email_confirmation": true,
  "2fa": {
    "enabled": true
  },
  "app_name": "Vanguard",
  "registration": {
    "captcha": {
      "enabled": false
    }
  },
  "tos": false
}