GET
/
fundamentals
/
financials
Get the balance sheet and cashflow statement for a company. Although symbols, and cik are technically optional, if no parameters are included with the response, the result will be empty
curl --request GET \
  --url https://api.benzinga.com/api/v2/fundamentals/financials
{
  "result": [
    {
      "company": {
        "primarySymbol": "string",
        "primaryExchange": "string",
        "cik": "string",
        "valoren": "string",
        "sedol": "string",
        "standardName": "string"
      },
      "financials": [
        {
          "asOf": "string",
          "period": "string",
          "reportType": "string",
          "aorOrRestate": "string",
          "balanceSheet": {
            "id": {
              "companyId": "string",
              "asOf": "string",
              "reportType": "string",
              "period": "string",
              "aorOrRestate": "string"
            },
            "fiscalYearEnd": "integer",
            "currencyId": "string",
            "isCalculated": "boolean",
            "periodEndingDate": "string",
            "accountsPayable": "integer",
            "accountsReceivable": "integer",
            "currentAccruedExpences": "integer",
            "accumulateDepreciation": "integer",
            "additionalPaidInCapital": "integer",
            "capitalStock": "integer",
            "cashAndCashEquivalents": "integer",
            "cashCashEquivalentAndMarketableSecurities": "integer",
            "commonStock": "integer",
            "currentAssets": "integer",
            "currentDebtAndCapitalLeaseOblication": "integer",
            "currentLiabilities": "integer",
            "currentCapitalLeaseObligation": "integer",
            "nonCurrentDeferredLiabilities": "integer",
            "currentDeferredLiabilities": "integer",
            "currentDeferredRevenue": "integer",
            "nonCurrentDeferredRevenue": "integer",
            "grossPpe": "integer",
            "inventory": "integer",
            "longTermDebt": "integer"
          }
        }
      ]
    }
  ]
}
{
  "result": [
    {
      "company": {
        "primarySymbol": "string",
        "primaryExchange": "string",
        "cik": "string",
        "valoren": "string",
        "sedol": "string",
        "standardName": "string"
      },
      "financials": [
        {
          "asOf": "string",
          "period": "string",
          "reportType": "string",
          "aorOrRestate": "string",
          "balanceSheet": {
            "id": {
              "companyId": "string",
              "asOf": "string",
              "reportType": "string",
              "period": "string",
              "aorOrRestate": "string"
            },
            "fiscalYearEnd": "integer",
            "currencyId": "string",
            "isCalculated": "boolean",
            "periodEndingDate": "string",
            "accountsPayable": "integer",
            "accountsReceivable": "integer",
            "currentAccruedExpences": "integer",
            "accumulateDepreciation": "integer",
            "additionalPaidInCapital": "integer",
            "capitalStock": "integer",
            "cashAndCashEquivalents": "integer",
            "cashCashEquivalentAndMarketableSecurities": "integer",
            "commonStock": "integer",
            "currentAssets": "integer",
            "currentDebtAndCapitalLeaseOblication": "integer",
            "currentLiabilities": "integer",
            "currentCapitalLeaseObligation": "integer",
            "nonCurrentDeferredLiabilities": "integer",
            "currentDeferredLiabilities": "integer",
            "currentDeferredRevenue": "integer",
            "nonCurrentDeferredRevenue": "integer",
            "grossPpe": "integer",
            "inventory": "integer",
            "longTermDebt": "integer"
          }
        }
      ]
    }
  ]
}

Authorizations

token
string
query
required

Headers

accept
enum<string>

Specifies return format

Available options:
application/json,
application/xml (deprecated)

Query Parameters

symbols
string<csv>

One or more stock ticker symbol in comma separated list specifies company data to return

cik
string<csv>

One or more cik identifier in comma separated list specifies company data to return

asOf
string<YYYY-MM-DD>

Return results for dates greater than or equal date specified in this parameter

period
enum<string>
default:ALL

Specifies the time period of the returned results

Available options:
3M,
6M,
9M,
12M,
1Y,
ALL,
TTM
reportType
enum<string>
default:A

TTM, A (as originally reported), R (restated). P (Preliminary anouncements)

Available options:
TTM,
A,
R,
P

Response

An object including a response array containing an array of objects containing company data

result
object[]