List dataset access rules
Retrieves the list of datasets with their access constraints
GEThttps://api.devalgoseek.com/api/v1/account/my/data-access-rules#
Retrieves the list of datasets with their access constraints
Responses#
- 200
Successful Response
- application/json
- Schema
- Example (auto)
Schema
- Array [
- Example 1
- Example 2
- ]
dataset_idstringrequired
A short internal dataset identifier (unique).
Example:
US1032dataset_text_idstringrequired
A unique text identifier of the dataset.
Example:
eq_taqdataset_namestringrequired
A human-readable display name of the dataset.
Example:
US Equities Trade and Quotedataset_versionstringrequired
A version label of the dataset.
Example:
lateststart_datedaterequired
Start date of the access period for the dataset.
Example:
2024-01-01end_datedate
End date of the access period, or null if access is ongoing.
Examples:
Example:
nullExample:
2024-12-31universe_identifiersstring[]required
The list of allowed universe identifiers (e.g., Tickers) for dataset access. The empty list indicates no restrictions on universe identifiers.
Example:
["AAPL","MSFT","IBM"][
{
"dataset_id": "US1032",
"dataset_text_id": "eq_taq",
"dataset_name": "US Equities Trade and Quote",
"dataset_version": "latest",
"start_date": "2024-01-01",
"end_date": null,
"universe_identifiers": [
"AAPL",
"MSFT",
"IBM"
]
}
]
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- postman-cli
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.devalgoseek.com/api/v1/account/my/data-access-rules");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("X-API-KEY", "<X-API-KEY>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Response
Click the Send API Request button above and see the response here!