Skip to main content
POST
/
api
/
v1
/
meters
Create Meter
curl --request POST \
  --url https://api.example.com/api/v1/meters \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "meter_name": "<string>",
  "property_name": "<string>",
  "aggregation_type": "<string>",
  "unit": "<string>",
  "description": "<string>"
}
'
Consider using the Features API to create meters — it automatically creates the meter and wraps it in a feature entitlement.
name
string
required
Display name
meter_name
string
required
Unique internal identifier (slug)
property_name
string
required
Event payload property to read
aggregation_type
string
required
SUM, MAX, UNIQUE_COUNT, or LAST
unit
string
Display unit (e.g., “calls”, “GB”)
description
string
Description