Skip to main content
GET
/
datasets
/
{dataset_id}
/
snapshots
/
{snapshot_id}
/
column-stats
Metrics
curl --request GET \
  --url https://api-dev.narrative.io/datasets/{dataset_id}/snapshots/{snapshot_id}/column-stats \
  --header 'Authorization: Bearer <token>'
{
  "value": [
    {
      "column_name": "<string>",
      "approx_count_distinct": 123,
      "count_distinct": 123,
      "histogram": {
        "values": {},
        "number_of_bins": 123
      },
      "mean": 123,
      "standard_deviation": 123,
      "completeness": 123,
      "observed_types": {
        "values": {},
        "number_of_bins": 123
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

dataset_id
integer
required

Unique identifier for a dataset.

snapshot_id
integer
required

Unique identifier for a snapshot.

Response

Ok

value
object[]