AlgoSeek

Get dataset status

Retrieves time of the last update, the expected time of the next update and the status code for the dataset

GET 

https://api.devalgoseek.com/api/v1/meta/datasets/:dataset_id/status#

Retrieves time of the last update, the expected time of the next update and the status code for the dataset

Request#

Path Parameters#

    dataset_id Dataset Idrequired

    A short internal dataset identifier (unique).

    Example: US1032

Responses#

Successful Response

Schema
    last_update_timedate-timerequired

    A UTC timestamp of the most recent data update.

    Example: 2026-04-05T08:30:00Z
    expected_next_updatestringrequired

    The expected time of next scheduled update.

    Example: 06:30 ET
    statusstringrequired

    The health status of the underlying ArdaDB table. Indicates whether the dataset is available, empty, inactive, or contains corrupted parts.

    Possible values: [OK, No Data, Partial Outage, Down]

    Example: OK

Authorization: X-API-KEY#

name: X-API-KEYtype: apiKeyin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.devalgoseek.com/api/v1/meta/datasets/:dataset_id/status");
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());
Request
Base URL
https://api.devalgoseek.com
Auth
Parameters
— pathrequired
Column Filters
Response

Click the Send API Request button above and see the response here!