List my datasets
Retrieves the list of datasets available for the current identity
GEThttps://api.devalgoseek.com/api/v1/meta/datasets/my#
Retrieves the list of datasets available for the current identity
Responses#
- 200
- 403
Successful Response
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
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 Quotedata_groupstringrequired
The Data group to which the dataset belongs.
Example:
US Equityvendorstringrequired
The name of the data vendor.
Example:
algoseek[
{
"dataset_id": "US1032",
"dataset_text_id": "eq_taq",
"dataset_name": "US Equities Trade and Quote",
"data_group": "US Equity",
"vendor": "algoseek"
}
]
Forbidden
- application/json
No schema
- 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/meta/datasets/my");
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!