GET /user/tiers
GET

/v1/user/tiers

User tiers with pricing (member, vip, nova, diamond, verified)

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/user/tiers
curl 'https://api.xrpl.to/v1/user/tiers'

Response

200Example response3 ms · just now · 2.9 KB · 120 lines
https://api.xrpl.to/v1/user/tiers
{
  "success": true,
  "tiers": [
    "member",
    "vip",
    "nova",
    "diamond",
    "verified"
  ],
  "config": {
    "member": {
      "price": 0,
      "currency": "USD",
      "billing": null,
      "contentAccess": 0,
      "perks": {
        "privateMessageLimit": 100,
        "reputationAbility": 1,
        "authTier": 0,
        "trackerLabels": 50,
        "trackerWatchers": 50,
        "trackerHistory": 20
      }
    },
    "vip": {
      "price": 9.99,
      "currency": "USD",
      "billing": "monthly",
      "contentAccess": 1,
      "perks": {
        "skipUnlockRequirements": true,
        "skipAuthRequirements": true,
        "canChangeUsername": true,
        "noDailyPostLimits": true,
        "premiumCategoryAccess": true,
        "privateMessageLimit": 3000,
        "reputationAbility": 3,
        "authTier": 1,
        "trackerLabels": 100,
        "trackerWatchers": 100,
        "trackerHistory": 25
      }
    },
    "nova": {
      "price": 34.99,
      "currency": "USD",
      "billing": "lifetime",
      "contentAccess": 2,
      "perks": {
        "skipUnlockRequirements": true,
        "skipAuthRequirements": true,
        "canChangeUsername": true,
        "noDailyPostLimits": true,
        "premiumCategoryAccess": true,
        "postbitBackground": true,
        "canEditPosts": true,
        "privateMessageLimit": 6000,
        "reputationAbility": 4,
        "authTier": 2,
        "trackerLabels": 200,
        "trackerWatchers": 200,
        "trackerHistory": 20
      }
    },
    "diamond": {
      "price": 59.99,
      "currency": "USD",
      "billing": "lifetime",
      "contentAccess": 2,
      "perks": {
        "skipUnlockRequirements": true,
        "skipAuthRequirements": true,
        "canChangeUsername": true,
        "noDailyPostLimits": true,
        "premiumCategoryAccess": true,
        "postbitBackground": true,
        "canEditPosts": true,
        "priorityRequests": true,
        "privateMessageLimit": 9000,
        "reputationAbility": 6,
        "authTier": 2,
        "trackerLabels": 500,
        "trackerWatchers": 500,
        "trackerHistory": 25
      }
    },
    "verified": {
      "price": 589,
      "currency": "USD",
      "billing": "lifetime",
      "contentAccess": 3,
      "perks": {
        "skipUnlockRequirements": true,
        "skipAuthRequirements": true,
        "canChangeUsername": true,
        "noDailyPostLimits": true,
        "premiumCategoryAccess": true,
        "postbitBackground": true,
        "canEditPosts": true,
        "priorityRequests": true,
        "verifiedBadge": true,
        "privateMessageLimit": 15000,
        "reputationAbility": 10,
        "authTier": 3,
        "moderateChat": true,
        "canMute": [
          "vip",
          "nova",
          "diamond"
        ],
        "canBan": false,
        "trackerLabels": 1000,
        "trackerWatchers": 1000,
        "trackerHistory": 25
      }
    }
  },
  "default": "member",
  "xrpUsd": 1.4384
}

What it does

User tiers with pricing (member, vip, nova, diamond, verified)

An account is its r-address, e.g. rN7n3473SaZBCG4dFL83w7a1RXtXtbk2D9.
OpenAPI