Token authentication
Laravel Sanctum personal-access tokens with per-ability scopes for each app type.
A clean, versioned REST API and signed webhooks let you connect Radiatus to accounting tools, mobile apps, access hardware and anything else your community runs on.
$ curl https://community.radiatus.com/api/v1/bills \
-H "Authorization: Bearer <token>" \
-H "Accept: application/json"
{
"data": [
{
"id": 4821,
"number": "INV-2026-0481",
"amount": 3500.00,
"status": "due",
"due_date": "2026-07-15"
}
]
}
Laravel Sanctum personal-access tokens with per-ability scopes for each app type.
Every route lives under /api/v1 so your integrations never break unexpectedly.
Subscribe to events and verify each delivery with an HMAC-SHA256 signature.
Predictable per-plan rate limits with clear headers so you can back off gracefully.
A small sample — the full reference is available with your account.
| POST | /api/v1/auth/login | Exchange credentials for a Sanctum token |
| GET | /api/v1/bills | List a resident's maintenance bills |
| POST | /api/v1/visitors | Create a pre-approved visitor pass |
| GET | /api/v1/notices | Fetch active community notices |
| POST | /api/v1/complaints | Raise a help-desk complaint |
| GET | /api/v1/bookings | List facility bookings |