Skip to main content
POST
/
api
/
data-readiness
/
data-assets
/
profiles
/
columns
/
batch
Batch-fetch latest column profiles by table and/or column FQN
curl --request POST \
  --url https://api.example.com/api/data-readiness/data-assets/profiles/columns/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "table_fqns": [
    "<string>"
  ],
  "column_fqns": [
    "<string>"
  ]
}
'
{
  "profiles": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "asset_fqn": "<string>",
      "service": "<string>",
      "asset_version": "<string>",
      "created_at": "<string>",
      "workflow_run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "database_name": "<string>",
      "schema_name": "<string>",
      "table_name": "<string>",
      "column_name": "<string>",
      "values_count": 123,
      "non_null_count": 123,
      "duplicate_count": 123,
      "null_count": 123,
      "null_proportion": 123,
      "distinct_count": 123,
      "min_value": "<string>",
      "max_value": "<string>",
      "histogram": {}
    }
  ]
}

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.

Body

application/json

Request body for POST /profiles/columns/batch.

At least one of table_fqns / column_fqns must be non-empty. The sum of identifiers across both fields must not exceed 200.

table_fqns
string[] | null
column_fqns
string[] | null

Response

Successful Response

Response body for POST /profiles/columns/batch.

profiles
ColumnProfileResponse · object[]
required