curl --request POST \
--url https://api.cloud.flexprice.io/v1/meters \
--header 'Content-Type: application/json' \
--header 'x-api-key: ' \
--data '{
"aggregation": {
"field": "tokens",
"type": "SUM"
},
"event_name": "tokens_total",
"name": "ai_tokens_used",
"filters": [
{
"key": "model_type",
"values": [
"gpt-4"
]
},
{
"key": "prompt_type",
"values": [
"input"
]
}
],
"reset_usage": "Periodic"
}'