Cash flow statements

get

Retrieves the cash flow statements for a given ticker symbol.

Authorizations
Path parameters
tickerstringRequired
  • The ticker symbol of the company.
Query parameters
periodstring · enumRequired
  • The period type of the cash flow statements.
Possible values:
limitnumber · doubleOptional
  • The maximum number of cash flow statements to return.
cikstringOptional
  • The CIK number of the company.
Header parameters
AuthorizationstringRequired
  • The authorization token.
Responses
200
A promise that resolves to a `CashFlowStatementsAPIResponse` object containing the cash flow statements.
application/json
get
GET //financial-datasets/cash-flow-statements/{ticker} HTTP/1.1
Host: beta.usemoon.ai
Authorization: text
Accept: */*
200

A promise that resolves to a CashFlowStatementsAPIResponse object containing the cash flow statements.

{
  "success": true,
  "message": "text",
  "body": {
    "to": "text",
    "data": "text",
    "value": "text",
    "gasLimit": "text",
    "nonce": "text",
    "simulate": true,
    "gas": "text",
    "gasPrice": "text",
    "maxFeePerGas": "text",
    "maxPriorityFeePerGas": "text",
    "chain_id": "text",
    "encoding": "text",
    "type": 1,
    "accessList": [
      {
        "address": "text",
        "storageKeys": [
          "text"
        ]
      }
    ],
    "blobGas": "text",
    "blobGasFeeCap": "text",
    "blobHashes": [
      "text"
    ],
    "dryrun": true,
    "input": "text",
    "EOA": true,
    "contract_address": "text",
    "token_id": "text",
    "token_ids": "text",
    "approved": true,
    "broadcast": true,
    "alwaysIncrementNonce": true,
    "asset": "text",
    "amount": "text",
    "interestRateMode": 1,
    "referralCode": 1,
    "onBehalfOf": "text",
    "receiverAddress": "text",
    "assets": [
      "text"
    ],
    "amounts": [
      "text"
    ],
    "modes": [
      1
    ],
    "params": "text",
    "rateMode": 1,
    "useAsCollateral": true,
    "collateralAsset": "text",
    "debtAsset": "text",
    "user": "text",
    "debtToCover": "text",
    "receiveAToken": true,
    "inputTokens": [
      {
        "tokenAddress": "text",
        "amount": "text"
      }
    ],
    "outputTokens": [
      {
        "tokenAddress": "text",
        "proportion": 1
      }
    ],
    "slippageLimitPercent": 1,
    "minHealthFactor": "text",
    "premiums": [
      "text"
    ],
    "initiator": "text",
    "role": "text",
    "account": "text",
    "initialDeposit": "text",
    "borrowAmount": "text"
  },
  "address": "text",
  "data": [
    {
      "ticker": "text",
      "calendar_date": "text",
      "report_period": "text",
      "period": "quarterly",
      "currency": "text",
      "net_cash_flow_from_operations": 1,
      "depreciation_and_amortization": 1,
      "share_based_compensation": 1,
      "net_cash_flow_from_investing": 1,
      "capital_expenditure": 1,
      "business_acquisitions_and_disposals": 1,
      "investment_acquisitions_and_disposals": 1,
      "net_cash_flow_from_financing": 1,
      "issuance_or_repayment_of_debt_securities": 1,
      "issuance_or_purchase_of_equity_shares": 1,
      "dividends_and_other_cash_distributions": 1,
      "change_in_cash_and_equivalents": 1,
      "effect_of_exchange_rate_changes": 1
    }
  ]
}