GET /keys/tiers
GET

/v1/keys/tiers

Available API tiers with live XRP pricing. Developer, Business and Professional are bought for a term (30 days monthly, 365 yearly) and renew by buying the same tier again; Partner is by application.

AuthNone — works without a key

Request

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

Response

200Example response14 ms · just now · 1.8 KB · 92 lines
https://api.xrpl.to/v1/keys/tiers
{
  "success": true,
  "tiers": [
    {
      "name": "free",
      "displayName": "Free",
      "price": {
        "monthly": {
          "usd": 0,
          "xrp": 0
        },
        "yearly": null
      },
      "credits": 1000000,
      "creditsDaily": 33000,
      "limits": {
        "requestsPerMinute": 600,
        "requestsPerSecond": 10,
        "burstLimit": 20,
        "submitPerSecond": 1
      }
    },
    {
      "name": "developer",
      "displayName": "Developer",
      "price": {
        "monthly": {
          "usd": 49,
          "xrp": 35
        },
        "yearly": {
          "usd": 490,
          "xrp": 341,
          "savings": 98
        }
      },
      "credits": 10000000,
      "creditsDaily": 400000,
      "limits": {
        "requestsPerSecond": 50,
        "burstLimit": 100,
        "submitPerSecond": 5
      }
    },
    {
      "name": "business",
      "displayName": "Business",
      "price": {
        "monthly": {
          "usd": 499,
          "xrp": 347
        },
        "yearly": {
          "usd": 4990,
          "xrp": 3467,
          "savings": 998
        }
      },
      "credits": 100000000,
      "creditsDaily": 4000000,
      "limits": {
        "requestsPerSecond": 200,
        "burstLimit": 300,
        "submitPerSecond": 50
      }
    },
    {
      "name": "professional",
      "displayName": "Professional",
      "price": {
        "monthly": {
          "usd": 999,
          "xrp": 694
        },
        "yearly": {
          "usd": 9990,
          "xrp": 6940,
          "savings": 1998
        }
      },
      "credits": 200000000,
      "creditsDaily": 8000000,
      "limits": {
        "requestsPerSecond": 500,
        "burstLimit": 750,
        "submitPerSecond": 100
      }
    }
  ],
  "paymentAddress": "rBMrq2GN521SbDyRbnwJc3nVBwxnXRpLTo",
  "xrpRate": 1.4396499999999999
}

What it does

Available API tiers with live XRP pricing. Developer, Business and Professional are bought for a term (30 days monthly, 365 yearly) and renew by buying the same tier again; Partner is by application.

OpenAPI