Skip to main content
GET
/
api
/
data-readiness
/
metrics
/
details
Get Per-Asset Metric Details
curl --request GET \
  --url https://api.example.com/api/data-readiness/metrics/details \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "asset_fqn": "<string>",
      "asset_type": "<string>",
      "asset_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "service": "<string>",
      "metric_definition_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metric_name": "<string>",
      "dimension_name": "<string>",
      "numerator": 1,
      "denominator": 1,
      "score": "1.00",
      "created_at": "2023-11-07T05:31:56Z",
      "workflow_run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "database_name": "analytics",
      "schema_name": "public",
      "table_name": "customers"
    }
  ],
  "pagination": {
    "page": 123,
    "per_page": 123,
    "total": 123,
    "total_pages": 123,
    "has_next": true,
    "has_prev": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

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

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header as: Authorization: Bearer <token>. The JWT must contain valid client_id, and project_id claims for tenant isolation and SDK routing.

Query Parameters

asset_fqn
string | null

Fully qualified name to scope the details (e.g. service.database.schema.table)

metric_definition_id
string<uuid> | null

Filter by metric definition ID

dimension_id
string<uuid> | null

Filter by dimension ID

assessment_type
string | null

Filter by assessment type

as_of
string<date-time> | null

Point-in-time snapshot cutoff (ISO 8601)

workflow_run_id
string<uuid> | null

Filter to a specific workflow run

page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
per_page
integer
default:20

Items per page

Required range: 1 <= x <= 100

Response

Successful Response

Paginated per-asset metric details.

data
AssetMetricDetail · object[]
required

List of metric details

pagination
PaginationMeta · object
required

Pagination metadata