GET
/
v0
/
logs
/
metric
/
{default_metric}
curl --request GET \
  --url 'https://api.unify.ai/v0/logs/metric/<default_metric>?project=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
4.56

Returns the reduction metric for filtered values (base + derived) for one or more keys from a project. If a single key is provided, returns the metric value directly (for backward compatibility). If multiple keys are provided, returns a dict of {key: metric result}.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

default_metric
string
required

Query Parameters

project
string
required

Body

key
string | array | null

Single key string or a list of keys.

metrics
object | null

Optional per-key metrics mapping. If provided, overrides the path metric for those keys.

filter_expr
string | object | null

Expression to filter logs (string or key->expr dict).

from_ids
string | object | null

Log IDs to include (string or key->IDs dict).

exclude_ids
string | object | null

Log IDs to exclude (string or key->IDs dict).

context
string | null

Context name (string).

curl --request GET \
  --url 'https://api.unify.ai/v0/logs/metric/<default_metric>?project=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
4.56