Skip to content
Eden Engine

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

omnial/get-stock-financials

Given a ticker symbol and a frequency (annual or quarterly), returns four periods of that company's income statement, balance sheet, cash flow statement, and financial ratios -- line-item labels paired with a formatted value for each of the four most recent reporting periods.

activeper callv1
Provider
Web & Business Data Network
Category
equities
Provider price
$0.01365 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": [
    "symbol"
  ],
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Stock symbol (e.g. AAPL)."
    },
    "frequency": {
      "type": "integer",
      "description": "1 for annual, 2 for quarterly."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "statements": {
          "type": "object",
          "properties": {
            "symbol": {
              "type": "string",
              "description": "The requested ticker symbol, e.g. 'AAPL'."
            },
            "cashFlow": {
              "type": "object",
              "properties": {
                "asOf": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Observed as `null` on every real value seen (both populated fixtures) -- never confirmed to carry an actual date string."
                },
                "rows": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "description": "The line-item name, e.g. 'Total Revenue', 'Cash and Cash Equivalents', or a section header with no values of its own, e.g. 'Current Assets'."
                      },
                      "period1": {
                        "type": "string",
                        "description": "Formatted value for this line item in the most recent period (e.g. '$416,161,000', '89.32929%' for a ratio), the literal string '--' when not applicable, or an empty string for a section-header row."
                      },
                      "period2": {
                        "type": "string",
                        "description": "Same formatting as `period1`, prior period."
                      },
                      "period3": {
                        "type": "string",
                        "description": "Same formatting as `period1`, two periods back."
                      },
                      "period4": {
                        "type": "string",
                        "description": "Same formatting as `period1`, three periods back."
                      }
                    },
                    "additionalProperties": true
                  },
                  "description": "One entry per line item in this statement, in the provider's own display order (a section header row, e.g. 'Current Assets', is included with empty period values -- it is not itself a data row)."
                },
                "headers": {
                  "type": "object",
                  "properties": {
                    "label": {
                      "type": "string"
                    },
                    "period1": {
                      "type": "string"
                    },
                    "period2": {
                      "type": "string"
                    },
                    "period3": {
                      "type": "string"
                    },
                    "period4": {
                      "type": "string"
                    }
                  },
                  "description": "Column labels for the four period columns below. `label` is a fixed heading ('Period Ending:' for an annual pull, 'Quarterly Ending:' for a quarterly one); `period1..period4` are the four period-end dates those columns cover, most recent first, as formatted strings (e.g. '9/27/2025'), not ISO dates.",
                  "additionalProperties": true
                }
              },
              "description": "Operating, investing, and financing cash flows, one row per line item.",
              "additionalProperties": true
            },
            "balanceSheet": {
              "type": "object",
              "properties": {
                "asOf": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Observed as `null` on every real value seen (both populated fixtures) -- never confirmed to carry an actual date string."
                },
                "rows": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "description": "The line-item name, e.g. 'Total Revenue', 'Cash and Cash Equivalents', or a section header with no values of its own, e.g. 'Current Assets'."
                      },
                      "period1": {
                        "type": "string",
                        "description": "Formatted value for this line item in the most recent period (e.g. '$416,161,000', '89.32929%' for a ratio), the literal string '--' when not applicable, or an empty string for a section-header row."
                      },
                      "period2": {
                        "type": "string",
                        "description": "Same formatting as `period1`, prior period."
                      },
                      "period3": {
                        "type": "string",
                        "description": "Same formatting as `period1`, two periods back."
                      },
                      "period4": {
                        "type": "string",
                        "description": "Same formatting as `period1`, three periods back."
                      }
                    },
                    "additionalProperties": true
                  },
                  "description": "One entry per line item in this statement, in the provider's own display order (a section header row, e.g. 'Current Assets', is included with empty period values -- it is not itself a data row)."
                },
                "headers": {
                  "type": "object",
                  "properties": {
                    "label": {
                      "type": "string"
                    },
                    "period1": {
                      "type": "string"
                    },
                    "period2": {
                      "type": "string"
                    },
                    "period3": {
                      "type": "string"
                    },
                    "period4": {
                      "type": "string"
                    }
                  },
                  "description": "Column labels for the four period columns below. `label` is a fixed heading ('Period Ending:' for an annual pull, 'Quarterly Ending:' for a quarterly one); `period1..period4` are the four period-end dates those columns cover, most recent first, as formatted strings (e.g. '9/27/2025'), not ISO dates.",
                  "additionalProperties": true
                }
              },
              "description": "Assets, liabilities, and equity, one row per line item.",
              "additionalProperties": true
            },
            "financialRatios": {
              "type": "object",
              "properties": {
                "asOf": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Observed as `null` on every real value seen (both populated fixtures) -- never confirmed to carry an actual date string."
                },
                "rows": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "description": "The line-item name, e.g. 'Total Revenue', 'Cash and Cash Equivalents', or a section header with no values of its own, e.g. 'Current Assets'."
                      },
                      "period1": {
                        "type": "string",
                        "description": "Formatted value for this line item in the most recent period (e.g. '$416,161,000', '89.32929%' for a ratio), the literal string '--' when not applicable, or an empty string for a section-header row."
                      },
                      "period2": {
                        "type": "string",
                        "description": "Same formatting as `period1`, prior period."
                      },
                      "period3": {
                        "type": "string",
                        "description": "Same formatting as `period1`, two periods back."
                      },
                      "period4": {
                        "type": "string",
                        "description": "Same formatting as `period1`, three periods back."
                      }
                    },
                    "additionalProperties": true
                  },
                  "description": "One entry per line item in this statement, in the provider's own display order (a section header row, e.g. 'Current Assets', is included with empty period values -- it is not itself a data row)."
                },
                "headers": {
                  "type": "object",
                  "properties": {
                    "label": {
                      "type": "string"
                    },
                    "period1": {
                      "type": "string"
                    },
                    "period2": {
                      "type": "string"
                    },
                    "period3": {
                      "type": "string"
                    },
                    "period4": {
                      "type": "string"
                    }
                  },
                  "description": "Column labels for the four period columns below. `label` is a fixed heading ('Period Ending:' for an annual pull, 'Quarterly Ending:' for a quarterly one); `period1..period4` are the four period-end dates those columns cover, most recent first, as formatted strings (e.g. '9/27/2025'), not ISO dates.",
                  "additionalProperties": true
                }
              },
              "description": "Liquidity and profitability ratios (e.g. current ratio, gross margin), one row per line item.",
              "additionalProperties": true
            },
            "incomeStatement": {
              "type": "object",
              "properties": {
                "asOf": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Observed as `null` on every real value seen (both populated fixtures) -- never confirmed to carry an actual date string."
                },
                "rows": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "description": "The line-item name, e.g. 'Total Revenue', 'Cash and Cash Equivalents', or a section header with no values of its own, e.g. 'Current Assets'."
                      },
                      "period1": {
                        "type": "string",
                        "description": "Formatted value for this line item in the most recent period (e.g. '$416,161,000', '89.32929%' for a ratio), the literal string '--' when not applicable, or an empty string for a section-header row."
                      },
                      "period2": {
                        "type": "string",
                        "description": "Same formatting as `period1`, prior period."
                      },
                      "period3": {
                        "type": "string",
                        "description": "Same formatting as `period1`, two periods back."
                      },
                      "period4": {
                        "type": "string",
                        "description": "Same formatting as `period1`, three periods back."
                      }
                    },
                    "additionalProperties": true
                  },
                  "description": "One entry per line item in this statement, in the provider's own display order (a section header row, e.g. 'Current Assets', is included with empty period values -- it is not itself a data row)."
                },
                "headers": {
                  "type": "object",
                  "properties": {
                    "label": {
                      "type": "string"
                    },
                    "period1": {
                      "type": "string"
                    },
                    "period2": {
                      "type": "string"
                    },
                    "period3": {
                      "type": "string"
                    },
                    "period4": {
                      "type": "string"
                    }
                  },
                  "description": "Column labels for the four period columns below. `label` is a fixed heading ('Period Ending:' for an annual pull, 'Quarterly Ending:' for a quarterly one); `period1..period4` are the four period-end dates those columns cover, most recent first, as formatted strings (e.g. '9/27/2025'), not ISO dates.",
                  "additionalProperties": true
                }
              },
              "description": "Revenue through net income, one row per line item.",
              "additionalProperties": true
            }
          },
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both populated fixtures observed."
    }
  },
  "description": "The financial-statements record, as returned at routing.responseResultPath ($.output). An unrecognized symbol resolves to a genuinely empty result (invalid-symbol.json) which shapes to `{}` -- no field here is guaranteed present on every call.",
  "additionalProperties": true
}

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.01365
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 23, 2026