Python SDK methods for Series operations
Method | HTTP request | Description |
---|---|---|
get_series | GET /series | Get Series |
get_series_by_ticker | GET /series/ | Get Series by Ticker |
GetSeriesResponse get_series(status=status)Get Series Get all market series
Name | Type | Description | Notes |
---|---|---|---|
status | str | Filter by series status | [optional] |
Status code | Description |
---|---|
200 | Series retrieved successfully |
401 | Unauthorized - authentication required |
500 | Internal server error |
GetSeriesByTickerResponse get_series_by_ticker(ticker)Get Series by Ticker Get a single series by its ticker
Name | Type | Description | Notes |
---|---|---|---|
ticker | str | The series ticker |
Status code | Description |
---|---|
200 | Series retrieved successfully |
401 | Unauthorized - authentication required |
404 | Resource not found |
500 | Internal server error |