latestOpenAPI 3.1.02026-08-145096557.0 KB

1c983de099e2

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."
  }
]