## finance/statements

`GET /v1/finance/statements`

Income statement, balance sheet or cash-flow statement of a listed company, one row per fiscal period: annual rows for each fiscal year, quarter-end rows with trailing-twelve-month figures, plus the latest trailing twelve months.

*Company financial statements*

| Parameter | Required | Description |
| --- | --- | --- |
| `symbol` | yes | Ticker symbol — e.g. `AAPL` |
| `statement` | no | income, balance or cash — e.g. `income` |
| `period` | no | all, annual or quarterly — e.g. `all` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 3 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/finance/statements?symbol=AAPL" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "count": 0,
  "note": "example",
  "period": "example",
  "periods": [
    {
      "basis": "example",
      "metric_count": 0,
      "metrics": {
        "basicAverageShares": 0,
        "basicEPS": 0,
        "costOfRevenue": 0,
        "dilutedAverageShares": 0,
        "dilutedEPS": 0,
        "dilutedNIAvailtoComStockholders": 0,
        "eBIT": 0,
        "eBITDA": 0,
        "grossProfit": 0,
        "interestExpense": 0,
        "interestExpenseNonOperating": 0,
        "interestIncome": 0,
        "interestIncomeNonOperating": 0,
        "netIncome": 0,
        "netIncomeCommonStockholders": 0,
        "netIncomeContinuousOperations": 0,
        "netIncomeFromContinuingAndDiscontinuedOperation": 0,
        "netIncomeFromContinuingOperationNetMinorityInterest": 0,
        "netIncomeIncludingNoncontrollingInterests": 0,
        "netInterestIncome": 0,
        "netNonOperatingInterestIncomeExpense": 0,
        "normalizedEBITDA": 0,
        "normalizedIncome": 0,
        "operatingExpense": 0,
        "operatingIncome": 0,
        "operatingRevenue": 0,
        "otherIncomeExpense": 0,
        "otherNonOperatingIncomeExpenses": 0,
        "pretaxIncome": 0,
        "reconciledCostOfRevenue": 0,
        "reconciledDepreciation": 0,
        "researchAndDevelopment": 0,
        "sellingGeneralAndAdministration": 0,
        "taxEffectOfUnusualItems": 0,
        "taxProvision": 0,
        "taxRateForCalcs": 0,
        "totalExpenses": 0,
        "totalOperatingIncomeAsReported": 0,
        "totalRevenue": 0
      },
      "period_end": "example"
    }
  ],
  "platform": "example",
  "statement": "example",
  "symbol": "example",
  "trailing_twelve_months": {
    "basis": "example",
    "metric_count": 0,
    "metrics": {
      "basicAverageShares": 0,
      "basicEPS": 0,
      "costOfRevenue": 0,
      "dilutedAverageShares": 0,
      "dilutedEPS": 0,
      "dilutedNIAvailtoComStockholders": 0,
      "eBIT": 0,
      "eBITDA": 0,
      "grossProfit": 0,
      "interestExpense": 0,
      "interestExpenseNonOperating": 0,
      "interestIncome": 0,
      "interestIncomeNonOperating": 0,
      "netIncome": 0,
      "netIncomeCommonStockholders": 0,
      "netIncomeContinuousOperations": 0,
      "netIncomeFromContinuingAndDiscontinuedOperation": 0,
      "netIncomeFromContinuingOperationNetMinorityInterest": 0,
      "netIncomeIncludingNoncontrollingInterests": 0,
      "netInterestIncome": 0,
      "netNonOperatingInterestIncomeExpense": 0,
      "normalizedEBITDA": 0,
      "normalizedIncome": 0,
      "operatingExpense": 0,
      "operatingIncome": 0,
      "operatingRevenue": 0,
      "otherIncomeExpense": 0,
      "otherNonOperatingIncomeExpenses": 0,
      "pretaxIncome": 0,
      "reconciledCostOfRevenue": 0,
      "reconciledDepreciation": 0,
      "researchAndDevelopment": 0,
      "sellingGeneralAndAdministration": 0,
      "taxEffectOfUnusualItems": 0,
      "taxProvision": 0,
      "taxRateForCalcs": 0,
      "totalExpenses": 0,
      "totalOperatingIncomeAsReported": 0,
      "totalRevenue": 0
    }
  }
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/finance/statements#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/finance/statements.json)
