getStats

API Version: 0.3.0

GET /asset/{asset_id}/stats

Get stats for asset.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

asset_Id

string

Asset ID

Response

{
  "data": {
    "row_count": 0,
    "field_stats": [
      {
        "data_type": "bigint",
        "min": 0,
        "max": 0,
        "sum": 0,
        "mean": 0,
        "std_dev": 0
      }
    ]
  },
  "status": "success"
}

Last updated

Was this helpful?