> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apowerb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Metrics Info

> Lists all eval metrics for the given app.



## OpenAPI

````yaml /api-reference/openapi.json get /apps/{app_name}/metrics-info
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /apps/{app_name}/metrics-info:
    get:
      tags:
        - Evaluation
      summary: List Metrics Info
      description: Lists all eval metrics for the given app.
      operationId: list_metrics_info_apps__app_name__metrics_info_get
      parameters:
        - name: app_name
          in: path
          required: true
          schema:
            type: string
            title: App Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListMetricsInfoResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ListMetricsInfoResponse:
      properties:
        metricsInfo:
          items:
            $ref: '#/components/schemas/MetricInfo'
          type: array
          title: Metricsinfo
      type: object
      required:
        - metricsInfo
      title: ListMetricsInfoResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MetricInfo:
      properties:
        metricName:
          type: string
          title: Metricname
          description: The name of the metric.
        description:
          type: string
          title: Description
          description: A 2 to 3 line description of the metric.
        metricValueInfo:
          $ref: '#/components/schemas/MetricValueInfo'
          description: Information on the nature of values supported by the metric.
      additionalProperties: false
      type: object
      required:
        - metricName
        - metricValueInfo
      title: MetricInfo
      description: Information about the metric that are used for Evals.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    MetricValueInfo:
      properties:
        interval:
          anyOf:
            - $ref: >-
                #/components/schemas/google__adk__evaluation__eval_metrics__Interval
            - type: 'null'
          description: The values represented by the metric are of type interval.
      additionalProperties: false
      type: object
      title: MetricValueInfo
      description: Information about the type of metric value.
    google__adk__evaluation__eval_metrics__Interval:
      properties:
        minValue:
          type: number
          title: Minvalue
          description: The smaller end of the interval.
        openAtMin:
          type: boolean
          title: Openatmin
          description: >-
            The interval is Open on the min end. The default value is False,
            which means that we assume that the interval is Closed.
          default: false
        maxValue:
          type: number
          title: Maxvalue
          description: The larger end of the interval.
        openAtMax:
          type: boolean
          title: Openatmax
          description: >-
            The interval is Open on the max end. The default value is False,
            which means that we assume that the interval is Closed.
          default: false
      additionalProperties: false
      type: object
      required:
        - minValue
        - maxValue
      title: Interval
      description: Represents a range of numeric values, e.g. [0 ,1] or (2,3) or [-1, 6).

````

## Related topics

- [List Apps](/api-reference/list-apps.md)
- [Run Eval Legacy](/api-reference/evaluation/run-eval-legacy.md)
- [Get Adk App Info](/api-reference/get-adk-app-info.md)
- [Run Eval](/api-reference/evaluation/run-eval.md)
- [Tools](/concepts/tools.md)
