# Finance Statements API (https://www.socialcrawl.dev/platforms/finance/statements) > Returns income-statement, balance-sheet and cash-flow line items per reporting period as a unified FinancialStatementList. Line-item names match the `financials` block inside /v1/finance/quote, so both surfaces spell `net_income` the same way. Period-over-period delta leaves are computed as fractional changes; the earliest period has nothing to compare against and reports null rather than a fabricated zero. Reporting currency is null: the upstream does not supply it on any period. IMPORTANT: rows are keyed by fiscal period END, not by filing date. This surface therefore cannot support point-in-time reconstruction, and a restatement silently replaces the original figures, so a backtest built on it carries look-ahead bias. TL;DR: `GET /v1/finance/statements` costs 5 credits 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 | Company ticker. A bare symbol ('AAPL') or the 'TICKER:EXCHANGE' form; the exchange suffix is ignored. | | `type` | no | Reporting periodicity: annual, quarterly, or trailing. Defaults to annual. (annual \| quarterly \| trailing) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/finance/statements?keyword=AAPL" \ -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