Skills/US Stocks/Cost preview

Cost preview

Free

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.

Use when

You want to know what a date range and ticker set will cost before pulling the price history.

Not for

Fetching the prices themselves, or any non-price-history query.

Cost

Free

This preview is free.

What it accepts

Set these inside the intent when you run it.

symbolsrequired

The same tickers you plan to pull, as a comma-separated string.

startrequired

First date of the intended pull, ISO 8601.

endoptional

End of the intended range, exclusive, ISO 8601.

schemaoptional

Bar resolution to price. ohlcv-1d (daily, default) or ohlcv-1h (hourly).

What you get back

An indicative credit cost estimate for the equivalent price-history pull, at no charge.

Run it

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

  • How much would it cost to pull a year of daily data for 10 tickers?
  • Estimate the cost before I pull hourly prices for AAPL over the past month.
  • What will it cost to get MSFT and GOOGL prices for all of 2023?