Skip to main content
GET
/
api
/
data-readiness
/
metrics
/
filter-options
Get Filter Options
curl --request GET \
  --url https://api.example.com/api/data-readiness/metrics/filter-options \
  --header 'Authorization: Bearer <token>'
{
  "services": [
    "<string>"
  ],
  "databases": [
    "<string>"
  ],
  "schemas": [
    "<string>"
  ],
  "tables": [
    "<string>"
  ]
}

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

assessment_type
string
required

Assessment type: 'metadata' or 'data_quality'

service
string | null

Filter databases by service name

database
string | null

Filter schemas by database name

schema
string | null

Filter tables by schema name

Response

Successful Response

Available filter values for cascading dashboard dropdowns.

services
string[]
required

Distinct service names with assessment data

databases
string[]
required

Distinct database names (filtered by parent selections)

schemas
string[]
required

Distinct schema names (filtered by parent selections)

tables
string[]
required

Distinct table names (filtered by parent selections)