Developer API

Build on top of your community data

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.

example request
$ 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"
    }
  ]
}

Token authentication

Laravel Sanctum personal-access tokens with per-ability scopes for each app type.

Versioned & stable

Every route lives under /api/v1 so your integrations never break unexpectedly.

Signed webhooks

Subscribe to events and verify each delivery with an HMAC-SHA256 signature.

Rate limited & fair

Predictable per-plan rate limits with clear headers so you can back off gracefully.

Endpoints

A taste of the API

A small sample — the full reference is available with your account.

POST /api/v1/auth/login
GET /api/v1/bills
POST /api/v1/visitors
GET /api/v1/notices
POST /api/v1/complaints
GET /api/v1/bookings