Skip to main content
GET
/
metrics
/
{id}
Get a billable metric
curl --request GET \
  --url https://api.alguna.io/metrics/{id} \
  --header 'Alguna-Version: <alguna-version>' \
  --header 'Authorization: Bearer <token>'
{
  "aggregation": {
    "field": "amount",
    "method": "sum"
  },
  "created_at": "2026-04-01T10:00:00Z",
  "event_name": "api_call",
  "id": "mtr_01H1VECT",
  "name": "API Calls",
  "updated_at": "2026-04-01T12:30:00Z",
  "description": "Counts API calls per customer",
  "filter_groups": [
    {
      "filters": [
        {
          "field": "region",
          "operator": "equal",
          "value": "us-east-1"
        }
      ],
      "operator": "and"
    }
  ],
  "tag_ids": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://alguna.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token.

Headers

Alguna-Version
enum<string>
required
Available options:
2026-04-01

Path Parameters

id
string
required

Unique identifier for the metric

Response

Success

aggregation
object
required

How events are aggregated into a metric value

created_at
string<date-time>
required

Timestamp when the metric was created

Example:

"2026-04-01T10:00:00Z"

event_name
string
required

Event name that triggers this metric

Example:

"api_call"

id
string
required

Unique identifier for the metric

Example:

"mtr_01H1VECT"

name
string
required

Name of the metric

Example:

"API Calls"

updated_at
string<date-time>
required

Timestamp when the metric was last updated

Example:

"2026-04-01T12:30:00Z"

description
string | null

Description of the metric

Example:

"Counts API calls per customer"

filter_groups
object[]

Filter groups applied to events before aggregation

tag_ids
string[]

Tag identifiers associated with this metric