RevKeen Docs
Api reference

List meters

List all usage meters with optional filtering and pagination.


Related endpoints

  • POST /meters — Create a meter
  • GET /meters/{id} — Get a meter
  • PATCH /meters/{id} — Update a meter
  • POST /meters/{meterId}/prices — Create a meter price
  • GET /meters/{meterId}/prices — List meter prices
  • PATCH /meters/{meterId}/prices/{priceId} — Update a meter price
  • POST /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.

GET
/meters
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"
}