Analytics
Definition effectiveness, health, and ecosystem analytics
8 endpoints
Ecosystem overview
Returns aggregate ecosystem metrics including definition counts, activity trends, and health distribution. Pro tier when tier gating enabled.
Responses
Response fields
dataobjectAggregate ecosystem metrics
/api/v1/analytics/ecosystem/overviewcurl -X GET "https://api.uluops.ai/api/v1/analytics/ecosystem/overview" \
-H "Authorization: Bearer $ULUOPS_TOKEN"{
"data": "..."
}Definition effectiveness metrics
Returns pass rate, average score, issue yield, and resolution metrics for a definition. Free tier for basic metrics.
Parameters
typerequiredstringpathDefinition type
agentcommandworkflowpipelinenamerequiredstringpathDefinition name (lowercase alphanumeric with hyphens)
versionstringquerySpecific version to query (defaults to latest)
Default:latestperiodstringqueryTime period for metrics aggregation
Default:30dResponses
Response fields
dataobjectEffectiveness metrics including pass rate, average score, issue yield
/api/v1/analytics/definitions/{type}/{name}/effectivenesscurl -X GET "https://api.uluops.ai/api/v1/analytics/definitions/agent/my-project/effectiveness"{
"data": "..."
}Definition health score
Returns computed health score and contributing factors for a definition. Pro tier required.
Parameters
typerequiredstringpathDefinition type
agentcommandworkflowpipelinenamerequiredstringpathDefinition name (lowercase alphanumeric with hyphens)
versionstringquerySpecific version to query
Responses
Response fields
dataobjectHealth score and factor breakdown
/api/v1/analytics/definitions/{type}/{name}/healthcurl -X GET "https://api.uluops.ai/api/v1/analytics/definitions/agent/my-project/health"{
"data": "..."
}Definition version lineage
Returns version history with analytics per version for a definition. Pro tier required.
Parameters
typerequiredstringpathDefinition type
agentcommandworkflowpipelinenamerequiredstringpathDefinition name (lowercase alphanumeric with hyphens)
Responses
Response fields
dataobjectVersion history with analytics per version
/api/v1/analytics/definitions/{type}/{name}/lineagecurl -X GET "https://api.uluops.ai/api/v1/analytics/definitions/agent/my-project/lineage"{
"data": "..."
}Definition evolution metrics
Returns how definition metrics have changed over time. Pro tier required.
Parameters
typerequiredstringpathDefinition type
agentcommandworkflowpipelinenamerequiredstringpathDefinition name (lowercase alphanumeric with hyphens)
Responses
Response fields
dataobjectTime-series metrics showing definition evolution
/api/v1/analytics/definitions/{type}/{name}/evolutioncurl -X GET "https://api.uluops.ai/api/v1/analytics/definitions/agent/my-project/evolution"{
"data": "..."
}Translation analytics
Returns translation pipeline metrics including version changes and rendering statistics. Pro tier required.
Parameters
typerequiredstringpathDefinition type
agentcommandworkflowpipelinenamerequiredstringpathDefinition name (lowercase alphanumeric with hyphens)
Responses
Response fields
dataobjectTranslation version changes and rendering stats
/api/v1/analytics/definitions/{type}/{name}/translationcurl -X GET "https://api.uluops.ai/api/v1/analytics/definitions/agent/my-project/translation"{
"data": "..."
}Compare effectiveness across versions
Returns side-by-side effectiveness metrics for 2-5 versions of a definition. Pro tier required.
Parameters
typerequiredstringpathDefinition type
agentcommandworkflowpipelinenamerequiredstringpathDefinition name (lowercase alphanumeric with hyphens)
versionsrequiredstringqueryComma-separated list of 2-5 versions to compare
Responses
Response fields
dataobjectPer-version effectiveness metrics for comparison
/api/v1/analytics/definitions/{type}/{name}/effectiveness/comparecurl -X GET "https://api.uluops.ai/api/v1/analytics/definitions/agent/my-project/effectiveness/compare?versions=example-value"{
"data": "..."
}Version diff impact analysis
Returns how a version change impacted effectiveness metrics. Pro tier required.
Parameters
typerequiredstringpathDefinition type
agentcommandworkflowpipelinenamerequiredstringpathDefinition name (lowercase alphanumeric with hyphens)
fromVersionrequiredstringpathSource version for diff
toVersionrequiredstringpathTarget version for diff
Responses
Response fields
dataobjectImpact analysis of version change on effectiveness
/api/v1/analytics/definitions/{type}/{name}/diff/{fromVersion}/{toVersion}/impactcurl -X GET "https://api.uluops.ai/api/v1/analytics/definitions/agent/my-project/diff/example-value/example-value/impact"{
"data": "..."
}