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

# 获取 App 计量器配置

> Returns all billing meters configured for an App. No authentication required.



## OpenAPI

````yaml GET /v1/meters
openapi: 3.0.0
info:
  title: Profy Platform API
  version: 1.0.0
  description: >-
    Platform API for building on Profy — invoke Experts, use models, report
    billing events, and manage OAuth.
servers:
  - url: https://api.profy.cn
    description: Production
security: []
paths:
  /v1/meters:
    get:
      tags:
        - Platform API
      summary: List App meter configurations (public)
      description: >-
        Returns all billing meters configured for an App. No authentication
        required.
      operationId: listMeters
      parameters:
        - name: app_uuid
          in: query
          required: true
          schema:
            type: string
          description: Application UUID
      responses:
        '200':
          description: Meter list
          content:
            application/json:
              schema:
                type: object
                properties:
                  meters:
                    type: array
                    items:
                      type: object
                      properties:
                        eventName:
                          type: string
                          description: Event name used in POST /v1/events
                        priceCredits:
                          type: number
                          description: Credits charged per event
                        description:
                          type: string
                          nullable: true
        '400':
          description: Missing app_uuid parameter

````