Stock Markets (AlphaVantage)
Fetches historical stock market time series data from Alpha Vantage.
Custom Streaming + One-shot
Fetches historical stock market time series data from Alpha Vantage.
Technical details
Authentication ▾
Contact us for setup details.
Ingestion ▾
Mode: Streaming + One-shot
Tools exposed (2) ▾
alphavantage/get_stock_data
Fetches historical stock market time series data from Alpha Vantage.
upsert_bento_get_stock_data
Create or update a recurring stock market data feed. Useful for tracking price movements over time. Same arguments as alphavantage/get_stock_data.
Inputs ▾
alphavantage/get_stock_data
| Name | Type | Required | Description |
|---|---|---|---|
| dashboardId | string | no | Target dashboard/initiative ID. Omit to use the current dashboard. |
| symbol | string | yes | Stock symbol (e.g., "IBM", "GOOG", "AAPL"). |
| function | string | no | Time series function. Default: TIME_SERIES_DAILY. Use ADJUSTED variants for split/dividend-adjusted data. TIME_SERIES_INTRADAY TIME_SERIES_DAILY TIME_SERIES_DAILY_ADJUSTED TIME_SERIES_WEEKLY TIME_SERIES_WEEKLY_ADJUSTED TIME_SERIES_MONTHLY TIME_SERIES_MONTHLY_ADJUSTED |
| interval | string | no | Interval for TIME_SERIES_INTRADAY. Required when function is INTRADAY. 1min 5min 15min 30min 60min |
| adjusted | boolean | no | For intraday: include adjusted close. Default: true. |
| extended_hours | boolean | no | For intraday: include pre/post-market data. Default: true. |
| month | string | no | For intraday: specific month in YYYY-MM format (e.g., "2024-01"). Fetches full intraday history for that month. |
| outputsize | string | no | "compact" (latest 100 data points) or "full" (20+ years). Default: "compact". compact full |
upsert_bento_get_stock_data
| Name | Type | Required | Description |
|---|---|---|---|
| dashboardId | string | no | Target dashboard/initiative ID. Omit to use the current dashboard. |
| symbol | string | yes | Stock symbol (e.g., "IBM", "GOOG", "AAPL"). |
| function | string | no | Time series function. Default: TIME_SERIES_DAILY. Use ADJUSTED variants for split/dividend-adjusted data. TIME_SERIES_INTRADAY TIME_SERIES_DAILY TIME_SERIES_DAILY_ADJUSTED TIME_SERIES_WEEKLY TIME_SERIES_WEEKLY_ADJUSTED TIME_SERIES_MONTHLY TIME_SERIES_MONTHLY_ADJUSTED |
| interval | string | no | Interval for TIME_SERIES_INTRADAY. Required when function is INTRADAY. 1min 5min 15min 30min 60min |
| adjusted | boolean | no | For intraday: include adjusted close. Default: true. |
| extended_hours | boolean | no | For intraday: include pre/post-market data. Default: true. |
| month | string | no | For intraday: specific month in YYYY-MM format (e.g., "2024-01"). Fetches full intraday history for that month. |
| outputsize | string | no | "compact" (latest 100 data points) or "full" (20+ years). Default: "compact". compact full |
| connectorId | string | no | If provided, updates the existing connector instead of creating a new one. |
| polling_frequency | string | yes | How often to check for new data (e.g. '15m', '1h'). |
| description | string | no | Human-readable description of what this connector monitors. Shown to analysts in future sessions. |