Check status and statistics for your referral program

Get information about your current status in the referral program. See if you are eligible to refer new customers, your trust tier, and if your BankID is verified. It also shows statistics on your referrals and rewards.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/referral/status
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/referral/status" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "eligible": true,
    "trustTier": 0,
    "bankIdVerified": true,
    "link": "string",
    "stats": {
      "monthlyUsed": 0,
      "monthlyLimit": 0,
      "lifetimeEarnedMonths": 0,
      "lifetimeLimitMonths": 0,
      "pendingReferrals": 0,
      "completedReferrals": 0
    },
    "rewards": {
      "referrerMonths": 0,
      "refereeMonths": 0
    }
  }
}