---
title: "Last hour of usage and a list of applications that have reported seeing this feature flag"
method: GET
path: "/api/admin/client-metrics/features/{name}"
tags: ["Metrics"]
---

# Last hour of usage and a list of applications that have reported seeing this feature flag

`GET /api/admin/client-metrics/features/{name}`

Separate counts for yes (enabled), no (disabled), as well as how many times each variant was selected during the last hour

## Path parameters

- `name` string, required

## Response `200`

featureUsageSchema

- FeatureUsageSchema — How many applications have seen this feature flag, as well as how this feature was evaluated the last hour
  - `version` integer, required — The version of this schema
  - `maturity` string, required — The maturity level of this API (alpha, beta, stable, deprecated)
  - `featureName` string, required — The name of the feature
  - `lastHourUsage` FeatureEnvironmentMetricsSchema[], required — Last hour statistics. Accumulated per feature per environment. Contains counts for evaluations to true (yes) and to false (no)
    - `featureName` string — The name of the feature
    - `appName` string — The name of the application the SDK is being used in
    - `environment` string, required — Which environment the SDK is being used in
    - `timestamp` union, required — A representation of a date. Either as a date-time string or as a UNIX timestamp.
      - string, date-time — An [RFC-3339](https://www.rfc-editor.org/rfc/rfc3339.html)-compliant timestamp.
      - integer — A [UNIX timestamp](https://en.wikipedia.org/wiki/Unix_time).
    - `yes` integer, required — How many times the toggle evaluated to true
    - `no` integer, required — How many times the toggle evaluated to false
    - `variants` object — How many times each variant was returned
  - `seenApplications` string[], required — A list of applications seen using this feature

## Other responses

- `401` — Authorization information is missing or invalid. Provide a valid API token as the `authorization` header, e.g. `authorization:*.*.my-admin-token`.
- `403` — The provided user credentials are valid, but the user does not have the necessary permissions to perform this operation
- `404` — The requested resource was not found.

---

[API](https://skmtc.net/unleash/apis/unleash-api-3.md) · [All operations](https://skmtc.net/unleash/apis/unleash-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unleash/unleash-api-3/versions/b2c3116e633e/schema)
