Skip to content
Eden Engine

Company Financial Statements (Income, Cash Flow, Balance Sheet, Ratios)

omnial/get-financial-statements

Given a stock ticker (and optionally its exchange), returns that company's financial statements as reported -- annual and quarterly income statements, cash flow statements, balance sheets, and a metrics/ratios table -- each as a set of line-item rows with one column per year (roughly the last 10 years) or per quarter (roughly the last 2-3 years). An unrecognized ticker returns no statements rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
equities
Provider price
$0.0273 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "ticker"
  ],
  "properties": {
    "ticker": {
      "type": "string",
      "description": "Stock ticker symbol (e.g. 'AAPL')."
    },
    "exchange": {
      "type": "string",
      "description": "Stock exchange (e.g. 'NYSE', 'NASDAQ')."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "statements": {
          "type": "object",
          "description": "Keyed by statement-table title, e.g. 'Annual Income Statements for Apple' -- the title embeds the resolved company name, so its exact key differs per ticker (only AAPL has been calibrated; see verification.notes). Observed as a genuinely empty object ({}) for an unrecognized ticker.",
          "additionalProperties": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "col_1": {
                  "type": "string"
                },
                "Metric": {
                  "type": "string"
                }
              },
              "description": "Each row's keys are a period label (a year like '2015' for an annual table, a quarter like 'Q1 2024' for a quarterly table) mapped to that period's value as a string, plus 'Metric' (the line-item name) and 'col_1' (observed as an empty string on every real row). Period-label keys roll forward over time as new years/quarters are added upstream and are not enumerated individually here.",
              "additionalProperties": {
                "type": "string"
              }
            },
            "description": "One row per financial-statement line item on the real AAPL fixture (e.g. 'Total Revenue', 'Net Cash From Operating Activities', 'Total Assets'), oldest-covered period first is not guaranteed -- the real fixture's rows are not sorted by any observed key."
          }
        }
      },
      "additionalProperties": false
    },
    "status": {
      "type": "string",
      "description": "'success' on both fixtures observed, including the unrecognized-ticker case."
    }
  },
  "description": "The financial-statements record, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": false
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0273
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026