Earn credit with referrals
Share your referral link. Once an account that signed up with it has paid enough in invoices, both accounts get credit on their balance.
In the dashboard
Every account has a referral link: the address of the sign-up page with your own referral code in it, such as https://www.coritan.com/sign-up?ref=7KQ2MXPA. An account that signs up with your code is linked to yours. Once that account has paid $10.00 in invoices, Coritan adds $10.00 to the credit balance of both accounts. These are the default terms and Coritan can change them, so read the current ones beside your link.
How a referral earns credit
Section titled How a referral earns credit- Someone opens your link and signs up. The sign-up page says
You are signing up with referral code 7KQ2MXPA., and keeps the code while they stay in that browser tab, so a reload does not lose it. Their account is linked to yours, with the statuspending. - They pay invoices. Every paid invoice counts, whether they paid it by card, PayPal or credit.
- When their paid invoices add up to the threshold ($10.00 by default), Coritan adds the credit ($10.00 by default) to both accounts and emails both of you. The referral's status becomes
credited.
Each referred account earns credit once. The credit is in US dollars, as every credit balance is, and it pays for invoices and hourly services before any card is charged (How Coritan spends credit).
When a referral does not count
Section titled When a referral does not countA sign-up goes ahead without a referral when:
- the code is unknown, or the account behind it is closed;
- the code is the person's own, or the two addresses are one mailbox, such as
jane.doe+test@gmail.comandjanedoe@gmail.com; - Coritan has switched referrals off.
An account can be referred only when it signs up. Coritan does not add a code to an account that already exists.
When a referred account reaches the threshold, Coritan voids the referral and adds no credit if either account is closed, or if the two accounts have saved the same card or PayPal account. Coritan staff can also void a referral before it earns credit.
Before you begin
Section titled Before you begin- Account plans are open on your account (Plans open in stages). Before they open, read your link through the API (With the API).
Share your link
Section titled Share your link- In the dashboard, select Plan and billing, then the Plan tab.
- On the Referrals card, select Copy link beside Your referral link.
- Send the link to the people you want to invite.
The card's description gives the current terms, such as When someone signs up with your link and pays $10.00 in invoices, you both get $10.00 of account credit. It also shows your Referral code, the number of Accounts referred and the Credit earned from them in all. The card is hidden while Coritan has referrals switched off.
Result
Section titled ResultThe credit shows on the Transactions tab of Billing as Credit added, with Referral credit under Paid with. Its description is Referral credit for an account you referred on your account, and Referral credit for signing up with a referral link on the new one (Transactions and payment attempts).
Related
Section titled RelatedWith the API
Section titled With the APIYou need an access token for the account. Make your first API request shows how.
Get your referral link
Section titled Get your referral linkGET /account/referrals returns your link, the terms and the accounts you referred. Coritan makes your code the first time you ask:
curl https://api.coritan.com/api/v1/account/referrals \
-H "Authorization: Bearer $CORITAN_TOKEN"
{
"enabled": true,
"code": "7KQ2MXPA",
"link": "https://www.coritan.com/sign-up?ref=7KQ2MXPA",
"credit_amount": "10.00",
"threshold": "10.00",
"currency": "USD",
"referred": [
{
"email_masked": "m***@g***.com",
"status": "pending",
"created_at": "2026-09-24T10:31:02",
"credited_at": null
},
{
"email_masked": "j***@e***.com",
"status": "credited",
"created_at": "2026-09-02T14:05:11",
"credited_at": "2026-09-20T08:12:40"
}
],
"referred_total": 2,
"credited": 1,
"earned": "10.00"
}
codeandlink- Your referral code, and the sign-up link to share.
linkisnullwhile Coritan has referrals switched off. credit_amountandthreshold- What each account gets, and what the referred account must pay in invoices first, both in
currency. referred- Up to 200 accounts you referred, newest first, each with its status. Coritan masks their addresses.
referred_total,creditedandearned- How many accounts you referred, how many of them earned credit, and the credit you earned from them in all.
Statuses
Section titled Statuses| Status | Meaning |
|---|---|
pending |
The account signed up with your code and has not paid enough yet. |
credited |
Both accounts received the credit. |
qualified |
The account paid enough while Coritan was giving no credit for referrals, so no credit was added. |
void |
The referral no longer counts: one of the accounts closed, the two share a payment method, or Coritan staff voided it. |
Sign up with a referral code
Section titled Sign up with a referral codePOST /auth/register takes a referral code in referral_code, beside the fields Create an account lists. A code that does not count is ignored, and the account is created without it.
API operations on this page
| Method | Path | What it does |
|---|---|---|
GET | /api/v1/account/referrals | The account's referral link, the terms, and the accounts it referred |