Florality
FeaturesPricingSecurityFAQAbout
Sign upSign in
Public REST APIv1

REST reference & guides

Public REST APIv1

REST reference & guides

Get started

  • Overview
  • Authentication
  • Scopes
  • Errors

API reference

  • Members
  • Groups
  • Entries
  • Front
  • Appearance
  • Custom fields
  • Trash
  • Search
  • Member statuses
  • Systems
  • Messaging
  • Privacy buckets
  • Terminology
  • Friends
  • Subscriptions
  • Billing
  • Import
  • Social
  • Guestbook & poll
  • Group layout
  • Activity
    • GETGet recent activity
  1. Documentation
  2. Activity
API keys
Florality

Organise your system. One front at a time.

Get startedSign in

Product

  • Features
  • Pricing
  • Public REST API
  • Security

Company

  • About
  • Our team
  • Changelog
  • Contact

Resources

  • FAQ
  • Trust & Safety
  • Privacy Policy
  • Terms of Service
  • Refunds and cancellation

© 2026 Florality. All rights reserved.

Privacy·Terms·

Activity

GET/api/v1/activity returns a fixed-shape payload: recent front sessions (not trashed), recently updated notes, and recently updated members.

Optional query limit (integer 1–50) caps each of the three lists. When omitted, the server default applies (same as the app). Unknown query keys return 400.

Authentication: activity: read.

See Scopes and Errors.

Get recent activity

Response

200: JSON object with three arrays. Timestamps are Unix milliseconds.

JSON
{
  "recentFrontSessions": [
    {
      "id": "uuid",
      "memberId": "uuid",
      "memberName": "Name",
      "startedAt": 1710000000000,
      "endedAt": 1710003600000
    }
  ],
  "recentNotes": [
    {
      "id": "uuid",
      "title": "Note title",
      "contentPreview": "Plain text preview…",
      "updatedAt": 1710000000000
    }
  ],
  "recentMemberUpdates": [
    { "id": "uuid", "name": "Member", "updatedAt": 1710000000000 }
  ]
}

cURL

Shell
curl -sS \
  -H "Authorization: Bearer YOUR_TOKEN" \
  "https://api.floralitys.com/api/v1/activity?limit=15"

Status codes

  • 200: JSON payload
  • 400: invalid limit or unknown parameters
  • 401 / 403: auth / scope
  • 503: database not configured