Dataset fields
When you create a dataset, the following fields are available:Column types
Each column in a dataset has adataType and an isEntity flag:
Date— A date or datetime column. Entity columns of typeDateare used as the time axis.String— A text column. Entity string columns act as dimension labels (e.g., country, sector).Decimal— A numeric value column. These are the measurements in your time series.
isEntity is true are dimension columns (they identify a row). Columns where isEntity is false are value columns (they hold the measurements).
API endpoints
The base URL for all dataset operations ishttps://api.alphacast.io.
Creating a dataset
Downloading data
UseGET /datasets/{id}/data to download a dataset’s contents. You can shape the response with OData query parameters.
Query parameters
Date stats
Use the date-stats endpoint to inspect a dataset’s temporal coverage before downloading it.inferedFreq field returns the detected cadence of the data (e.g., D for daily, M for monthly, Q for quarterly, A for annual).
If the frequency cannot be determined from cached metadata, the API will scan the dataset’s date column to infer it on the fly. This may take a moment for large datasets.