---
title: "Get Grouped Freshness"
method: GET
path: "/api/v2/freshness/groups"
tags: ["APPS_V2"]
---

# Get Grouped Freshness

`GET /api/v2/freshness/groups`

Tenant's datasets bucketed into UI display groups.

Every timestamp is unix epoch seconds; `generated_at` carries the server
clock so the client can render relative times against it. Internal
pipeline dataset_types (dbt transform runs, backfills) are excluded from
the response entirely. A databricks tenant always gets `groups: []` —
the databricks taxonomy classifies every dataset_type to `None` until it
is authored.

Gated by the `enableSystemStatus` tenant_info flag: a tenant without it
gets 404, not an empty payload, so a disabled feature is indistinguishable
from one that was never built.

## Headers

- `x-tenant` string, required
- `x-user-group-id` string, nullable
- `x-timezone` string, nullable

## Response `200`

Successful Response

- GroupedFreshnessResponse — Tenant's datasets bucketed into UI display groups. `generated_at` is the server clock (unix seconds) at response time — the reference every relative rendering should be computed against, so a client with a skewed clock cannot render "updated in 3 hours".
  - `generated_at` integer, required
  - `groups` GroupFreshness[]
    - `key` string, required
    - `label` string, required
    - `dataset_count` integer, required
    - `retired_count` integer
    - `last_refreshed_at` integer, nullable
    - `watermark_at` integer, nullable
    - `oldest_watermark_at` integer, nullable
    - `stalest_dataset_type` string, nullable
    - `has_failures` boolean
    - `datasets` DatasetFreshnessItem[]
      - `dataset_type` string, required
      - `last_refreshed_at` integer, nullable
      - `watermark_at` integer, nullable
      - `last_status` string, nullable
      - `source` string

## Other responses

- `403` — Not supported for public user
- `404` — System Status is not enabled for this tenant
- `422` — Validation Error

---

[API](https://skmtc.net/myaltimate/apis/fastapi.md) · [All operations](https://skmtc.net/myaltimate/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myaltimate/fastapi/revisions/4031762f858d/schema)
