Your agent invents stock prices; this returns real daily and hourly OHLCV bars.
US equity price history: daily or hourly OHLCV bars for one or more tickers across a date range, drawn from a consolidated US equities feed. Includes a free cost estimate before you pull data.
Historical OHLCV price bars for one or more US tickers over a date range.
Optional range end (exclusive), ISO 8601 date or datetime.
Maximum number of bars to return (total across all symbols). Larger pulls cost proportionally more.
Range start, ISO 8601 date or datetime (e.g. 2024-01-01). Assumed UTC.
Bar size: ohlcv-1d (daily) or ohlcv-1h (hourly).
US equities dataset. EQUS.MINI (consolidated intraday) or EQUS.SUMMARY (daily summary).
Comma-separated US tickers (e.g. "AAPL,MSFT,NVDA").
Output encoding. Fixed to JSON.
Symbology of the input symbols. Defaults to raw_symbol (plain tickers).
Return human-scaled decimal prices.
Return ISO 8601 timestamps.
Include the ticker symbol on each returned bar.
curl -X POST "https://skill.askfaro.com/skills/us-stocks/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get Apple's daily closing prices for January 2024"
}
}'askfaro describe us-stocks/prices
Install pip install askfaro-cli, then askfaro auth login.
Optional range end (exclusive), ISO 8601 date or datetime.
Range start, ISO 8601 date or datetime.
Bar size to price.
US equities dataset.
Comma-separated US tickers (e.g. "AAPL,MSFT").
curl -X POST "https://skill.askfaro.com/skills/us-stocks/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "How much would daily AAPL prices for 2023 cost to pull?"
}
}'askfaro describe us-stocks/estimate_cost
Install pip install askfaro-cli, then askfaro auth login.
Historical price bars (open, high, low, close, volume) for US-listed equities, from a consolidated US equities feed.
estimate_cost with the same parameters to preview the
data cost before pulling.prices with one or more symbols, a schema (daily or hourly
bars), and a start (and optional end) date. Results come back as
JSON with human-readable prices and timestamps.limit caps how many bars return.prices is billed by the volume of data the query returns: a small pull is a
fraction of a credit, a large one scales up. Call estimate_cost first to
preview a query's cost, and use limit plus a tight date range and symbol
set to keep pulls small.