latestOpenAPI 3.1.02026-08-145096557.0 KB

1c983de099e2

identity-access

List dataset access rules

Retrieves the list of datasets with their access constraints

get/v1/account/my/data-access-rules

Response

Successful Response

dataset_idstring required

A short internal dataset identifier (unique).

dataset_namestring required

A human-readable display name of the dataset.

dataset_versionstring required

A version label of the dataset.

start_datestring date required

Start date of the access period for the dataset.

end_datestring date nullable

End date of the access period, or null if access is ongoing.

universe_identifiersstring[] required

The list of allowed universe identifiers (e.g., Tickers) for dataset access. The empty list indicates no restrictions on universe identifiers.

Example response

[
  {
    "dataset_id": "US1032",
    "dataset_name": "US Equities Trade and Quote",
    "dataset_version": "latest",
    "start_date": "2024-01-01",
    "universe_identifiers": [
      "AAPL",
      "MSFT",
      "IBM"
    ]
  }
]