---
title: "Get Metric Values for all systems"
method: POST
path: "/metrics/evaluate"
tags: ["Metrics"]
---

# Get Metric Values for all systems

`POST /metrics/evaluate`

Returns Metric values for all systems from the provided Metric ID/UUID(s).

**Rate Limit**: Requests from a single user in excess of 100 requests per minute may be throttled.

While its not required to specify filter or sorting objects, it is required to include an empty array in the request.

## Query parameters

- `includeNonVisible` boolean

## Request body

- EvaluateMetricRequest
  - `Metrics` union[], required
    - union
      - string
      - integer
  - `Filters` object[]
    - `Field` 'EnvironmentID' | 'EnvironmentName' | 'SystemID' | 'FriendlyName'
    - `Op` 'contains' | 'does_not_contain' | 'matches_exactly' | 'starts_with' | 'ends_with' | 'equal_to'
    - `Values` union
      - integer
      - string
      - union[]
        - union
          - string
          - integer
  - `Sorting` object[]
    - `SortBy` 'MetricName' | 'EnvironmentName' | 'FriendlyName' | 'MetricID' | 'EnvironmentID' | 'SystemID'
    - `Direction` 'ASC' | 'DESC'
  - `Pagination` object, required
    - `Page` integer
    - `PageSize` integer

## Response `200`

Success

- object
  - `Success` boolean
  - `Data` MetricResponse[]
    - `SystemID` integer
    - `FriendlyName` string
    - `InspectorName` string
    - `EnvironmentName` string
    - `MetricID` integer
    - `MetricUUID` string
    - `MetricName` string
    - `TimelineID` integer
    - `TimelineDate` string, date
    - `Value` unknown
    - `EnvironmentID` integer
  - `Pagination` PaginationResponse
    - `TotalRows` integer
    - `HasMoreRows` boolean
    - `CurrentPage` integer
    - `TotalPages` integer
    - `PageSize` integer

## Other responses

- `400` — Bad Request
- `429` — Too Many Requests

---

[API](https://skmtc.net/liongard/apis/liongard-v2-endpoints.md) · [All operations](https://skmtc.net/liongard/apis/liongard-v2-endpoints/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/liongard/liongard-v2-endpoints/versions/4ba1aeff82d7/schema)
