---
title: "Get Users Resource Statistics 📊"
method: GET
path: "/api/v1/analytics/users/resources"
tags: ["Admin Analytics"]
---

# Get Users Resource Statistics 📊

`GET /api/v1/analytics/users/resources`

Get all users with their resource counts (trackers, offers, PWAs) for a specific time range. If no time range is provided, counts for all time are returned. **SUPERUSER only**

## Query parameters

- `startDate` string, date-time, nullable — Start date for filtering resources (ISO 8601 format). If not provided, all resources from the beginning are included.
- `endDate` string, date-time, nullable — End date for filtering resources (ISO 8601 format). If not provided, all resources until now are included.
- `page` integer
- `size` integer

## Response `200`

Successful Response

- PageUserResourceStatsDTO
  - `items` UserResourceStatsDTO[], required
    - `userId` string, uuid, required
    - `email` string, nullable, required
    - `firstName` string, nullable, required
    - `lastName` string, nullable, required
    - `username` string, nullable, required
    - `totalTrackers` integer
    - `totalOffers` integer
    - `totalPwas` integer
  - `total` integer, required
  - `page` integer, required
  - `size` integer, required
  - `pages` integer, required

## Other responses

- `401` — Authentication required.
- `403` — Access denied.
- `422` — Validation Error

---

[API](https://skmtc.dev/pwapps/apis/curie-api.md) · [All operations](https://skmtc.dev/pwapps/apis/curie-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pwapps/curie-api/revisions/b0af9064dfef/schema)
