Skip to main content
GET
/
datasets
/
{dataset_id}
/
metrics
Metrics
curl --request GET \
  --url https://api-dev.narrative.io/datasets/{dataset_id}/metrics \
  --header 'Authorization: Bearer <token>'
{
  "value": [
    {
      "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.

Response

Ok

value
object[]