Skip to content
Coritan Docs

Billing

How Coritan bills you, from your credit balance and invoices to payment methods, and where each lives on the Billing page.

View as Markdown

In the dashboard

Coritan bills each service on the billing cycle you chose when you ordered it: by the hour, week, month, quarter or year. You pay from your credit balance, with a saved card or PayPal account, or with cryptocurrency. This section explains how charges are worked out and paid, and how to change or cancel what you pay for.

Orders
An order raises one first invoice for everything in it: one billing cycle of the service, the first period of each add-on bought with it and any setup fees. Coritan takes what it can from your credit, and sets everything in the order up once the invoice is paid (Order a service).
Renewals
Coritan raises each renewal invoice up to 3 days before the service's renewal date, by default. It takes the invoice from your credit first and charges your default payment method for the rest.
Hourly services
After its first invoice, an hourly service has no invoices. Coritan takes its price from your credit every hour, up to a monthly cap (How hourly billing works).
Missed payments
Coritan retries a failed charge on a schedule. A service whose invoice stays unpaid is suspended a day after the due date, by default, and deleted later (Failed payments and suspended services).

Your credit is held in US dollars and never expires. Invoices are in US dollars too. The currency your bank charges depends on how you pay (Currencies and countries).

In the sidebar of the dashboard, select Billing. The page has four tabs.

Overview
Three cards across the top: Account credit (your balance, and whether automatic top-up is on), Due now (the total of your unpaid invoices) and You pay with (your default payment method). Under them are the Add credit card, Waiting for payment with your unpaid invoices, and Recent activity with your latest payments. The balance is in US dollars, even when your account's currency is another one and the card shows that currency's symbol.
Invoices
Every invoice, with its status, and the Pay button for the unpaid ones (Pay an invoice).
Transactions
Every payment, refund and credit movement (Transactions and payment attempts).
Payment methods
Your saved cards and PayPal accounts, auto-pay and automatic top-up (Manage payment methods).

Your account's billing mode is shown as Billing mode on your profile (Update your profile).

prepaid
The mode every new account starts in. You pay a service's first invoice before Coritan sets it up. Hourly billing and automatic top-up are for prepaid accounts only.
postpaid
A service on a monthly or longer billing cycle is set up without a first payment, and you pay an invoice at the end of each billing cycle. Hourly, daily and weekly plans still need their first payment before setup. Only Coritan staff can move an account to postpaid, so contact support to ask.
What Limit
One top-up $1.00 to $10,000.00
Credit that unlocks hourly billing $10.00 added in total, by default
Monthly cap of an hourly service 672 hours of its hourly price, by default
Renewal invoices Raised up to 3 days before the renewal date, by default
Suspension of an unpaid service 1 day after the invoice's due date, by default

GET /billing/credit returns your credit balance and your last 20 credit movements, newest first:

Shell
curl https://api.coritan.com/api/v1/billing/credit \
  -H "Authorization: Bearer $CORITAN_TOKEN"
JSON
{
  "balance": 37.01,
  "currency": "USD",
  "recent_transactions": [
    {
      "id": 9031,
      "amount": -0.0087,
      "balance_after": 37.01,
      "description": "Hourly charge for service #311",
      "created_at": "2026-09-25T09:00:02"
    },
    {
      "id": 9024,
      "amount": 25.0,
      "balance_after": 37.0187,
      "description": "Credit top-up $25.00 USD",
      "created_at": "2026-09-24T16:41:10"
    }
  ]
}

balance is in US dollars. currency is your account's currency, which is not the currency of balance: an account set to euros sees EUR beside a dollar amount. Each entry in recent_transactions is one change to your balance: amount is positive for credit added and negative for credit spent, and balance_after is the balance it left. The list holds movements that the Transactions tab does not show, such as hourly charges and the credit from a downgrade.

The Client API reference lists every billing operation. Make your first API request explains how to get $CORITAN_TOKEN.

API operations on this page

MethodPathWhat it does
GET/api/v1/billing/creditGet credit