alphacast.series(series_id), which returns a Series handle.
You need read permission on the parent dataset to read a series. Find a series ID in the URL on alphacast.io when viewing an individual variable.
Read metadata
Download the data
Like datasets, series support the same five output formats:format="pandas", the SDK fetches CSV under the hood and returns a parsed DataFrame. When format="json", the SDK parses newline-delimited JSON and returns a list of dicts.
The Series download endpoint does not currently expose date-range or column filters. If you need filtered reads, fetch from the parent dataset with
download_data instead.Method signature
One of
"csv", "json", "xlsx", "tsv", or "pandas". The first four return raw bytes (or list of dicts for JSON); "pandas" returns a DataFrame.When to use series vs datasets
- Series — ideal when you only need a single variable, and you already know its series ID. Lighter payload, single-column DataFrame.
- Dataset — ideal when you need multiple variables together, want to filter by entity or date, or want to manage uploads. Use
download_dataon the dataset handle.
Next steps
- Find dataset and series content with Search.
- Combine multiple variables in a single download via Downloading data.