Api reference
List meters
List all usage meters with optional filtering and pagination.
Related endpoints
POST /meters— Create a meterGET /meters/{id}— Get a meterPATCH /meters/{id}— Update a meterPOST /meters/{meterId}/prices— Create a meter priceGET /meters/{meterId}/prices— List meter pricesPATCH /meters/{meterId}/prices/{priceId}— Update a meter pricePOST /meters/{meterId}/prices/{priceId}/deactivate— Deactivate a meter price
Common errors
401 unauthenticated— missing, malformed, or revoked API key.
Pagination
Offset-based with limit (default 25, max 100) and offset. The response pagination block includes total and hasMore. See the pagination guide for SDK auto-paging helpers.
Authorization
apiKey x-api-key<token>
Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.
In: header
Query Parameters
include_archived?string
Include archived meters
limit?string
Max results (default 50, max 100)
offset?string
Pagination offset
Response Body
application/json
application/json
curl "https://api.revkeen.com/v2/meters" \ -H "x-api-key: $REVKEEN_API_KEY"{
"data": [
{
"property1": null,
"property2": null
}
],
"pagination": {
"limit": 0,
"offset": 0,
"count": 0
}
}{
"error": "string"
}