LynceaAPI

Get current tenant

Returns the tenant metadata, the caller's tenant role, and the retention cap derived from the current plan.

GET
/api/v1/tenants/me
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://api.monitoring.crahe-arthur.com/api/v1/tenants/me"
{
  "id": "018f7b9a-6f8d-4c1d-8d72-1bbecdadc101",
  "name": "Acme Monitoring",
  "slug": "acme-monitoring",
  "plan": "free",
  "status": "active",
  "retentionDaysCap": 30,
  "createdAt": "2026-04-28T19:00:00.000Z",
  "updatedAt": "2026-04-28T20:00:00.000Z",
  "me": {
    "userId": "018f7b9a-57dd-4748-9e13-6e3e3e5b9eaf",
    "orgRole": "owner"
  }
}