Skip to main content
GET
GET /v1/metrics/{id}/versions

Metric Versions

Every change to a metric creates a new version. Use these endpoints to inspect its version history or retrieve the metric as it existed at a specific version.

List Versions

string
required
UUID of the metric.

Get a Specific Version

Use GET /v1/metrics/{id}/versions/{version} to retrieve a specific version.
string
required
UUID of the metric.
string
required
Version number to retrieve, such as 0.1.
GET /v1/metrics/{id}/versions

Returns

The list endpoint returns an EntityHistory object whose versions array contains serialized metric snapshots, newest first. The specific-version endpoint returns a complete metric entity for that version.

Error Handling