# Finance History API (https://www.socialcrawl.dev/platforms/finance/history) > Returns daily OHLCV bars for one instrument across an explicit date range, as a unified BarList. Each row carries `close` AND `adj_close` as separate leaves, and the distinction matters: `close` is split-adjusted only, `adj_close` is adjusted for splits AND dividends. Use `adj_close` for total-return maths and `close` for drawing prices; substituting one for the other produces a plausible wrong answer whose error grows the further back you look. Cash dividends and splits appear on the dated row they take effect, so a corporate-action history needs no second call. Delisted instruments return no data, and a recycled ticker resolves to whichever company currently holds the symbol. TL;DR: `GET /v1/finance/history` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `keyword` | yes | Instrument ticker. A bare symbol ('AAPL', '005930.KS') or the 'TICKER:EXCHANGE' form from ticker-search; the exchange suffix is ignored. | | `start_date` | yes | First session to return, as YYYY-MM-DD. | | `end_date` | yes | Last session to return, as YYYY-MM-DD. | | `interval` | no | Bar width. Defaults to 1d (daily). Wider intervals return fewer, coarser rows over the same range. (1d \| 5d \| 1wk \| 1mo \| 3mo) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/finance/history?keyword=AAPL&start_date=2026-06-01&end_date=2026-09-01" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Finance API: https://www.socialcrawl.dev/platforms/finance ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing