Skip to main content
The list endpoint returns every dataset your account can access, spanning all repositories you own or have been granted permission to view. Use this endpoint to discover available datasets, check their names and IDs, and determine which repository each dataset belongs to before fetching its data.

Authentication

Authenticate using HTTP Basic Auth. Pass your API key as the username and leave the password empty.

Request

Method: GET
URL: https://api.alphacast.io/datasets
No query parameters or request body are required.

Response

Returns a JSON array of dataset objects. Each object represents one dataset accessible to your account.
integer
Unique numeric identifier for the dataset.
string
Display name of the dataset.
integer
ID of the repository this dataset belongs to.
string
Optional human-readable description of the dataset’s contents.
string
Name of the original data source, if provided at creation time.
string
URL linking to the original data source, if provided at creation time.
string
Your permission level on this dataset. One of Read, Write, or Admin.
string
Inferred data frequency of the dataset (e.g., monthly, daily). May be null if not yet determined.
string
Earliest date present in the dataset, in YYYY-MM-DD format. May be null if the dataset is empty.
string
Latest date present in the dataset, in YYYY-MM-DD format. May be null if the dataset is empty.

Example

This endpoint returns only datasets your account has at least Read permission on. Datasets in repositories you cannot access are not included in the response.