Skip to main content
GET /v1/billing/rates
Returns your tenant’s effective rate card, including per-use prices for minting and verification. If your organization has a custom rate card assigned by a platform admin, those rates are reflected here. Otherwise, the default rate card applies. Rates are automatically adjusted for your region based on your organization’s country.

Response

rate_card
object
The rate card metadata (ID, name, currency).
items
object[]
Rate card line items with per-use pricing.
is_default
boolean
true if the default rate card is in use, false if a custom card has been assigned.
regional_rates
object
Adjusted rates for your region.
curl https://api.truthlocks.com/v1/billing/rates \
  -H "X-API-Key: tl_live_..."
{
  "rate_card": {
    "id": "rc_default",
    "name": "Standard Rates",
    "currency": "USD"
  },
  "items": [
    {
      "metric": "attestations.mint",
      "unit_price": 25,
      "volume_min": 0,
      "volume_max": 0
    },
    {
      "metric": "verifications",
      "unit_price": 10,
      "volume_min": 0,
      "volume_max": 0
    }
  ],
  "is_default": true,
  "regional_rates": {
    "region": "TIER_1",
    "multiplier": 1.0,
    "mint_rate_cents": 25,
    "verify_rate_cents": 10
  }
}
For public pricing without authentication, use GET /v1/billing/public/rates. To estimate a monthly invoice, use the projected invoice endpoint.