dataset-info

List dataset columns

Retrieves the list of dataset's columns (fields) with data types and descriptions

get/v1/meta/datasets/{dataset_id}/columns

Path parameters

dataset_idstring required

A short internal dataset identifier (unique).

A short internal dataset identifier (unique).

Response

Successful Response

namestring required

The name of the data column.

data_typestring required

The type of the data column.

descriptionstring required

A description of what the data column represents.

Example response

[
  {
    "name": "Ticker",
    "data_type": "String",
    "description": "The ticker symbol of the instrument."
  }
]

Changes

No recorded changes to this endpoint across all 2 revisions of this API.