Before committing to a price-history pull, run this free preview to see the estimated credit cost for your exact query parameters. Pass the same tickers, date range, and resolution you intend to use, and get back an indicative credit cost so you can trim the range or ticker list if needed.
You want to know what a date range and ticker set will cost before pulling the price history.
Fetching the prices themselves, or any non-price-history query.
Free
This preview is free.
Set these inside the intent when you run it.
The same tickers you plan to pull, as a comma-separated string.
First date of the intended pull, ISO 8601.
End of the intended range, exclusive, ISO 8601.
Bar resolution to price. ohlcv-1d (daily, default) or ohlcv-1h (hourly).
An indicative credit cost estimate for the equivalent price-history pull, at no charge.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the US Stocks skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/us-stocks/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"estimate_cost","symbols":"AAPL,MSFT","start":"2024-01-01","end":"2025-01-01","schema":"ohlcv-1d"}}'Example requests