Graph Swiss API
    • Introduction
    • Quickstart
    • Authentication
    • Base URL
    • Errors
    • Request ID
    • Conventions
    • API
      • Health
        • Liveness probe
      • Companies
        • Search companies
        • AI-powered company search
        • Get company by ID
        • Get company journal summaries
        • Get full SHAB journal texts
        • Get detailed company report
      • Persons
        • Search persons
        • Get person by ID
      • Stocks
        • List active Swiss stock symbols
        • Get real-time stock quote
        • Get current stock price
        • Get historical OHLCV data
        • Get latest end-of-day data
        • Get company profile and statistics
        • Get income statement, balance sheet, and cash flow
        • Get key executives for a stock
    • Schemas
      • StockSymbol
      • Error
      • StockQuote
      • Company
      • StockPrice
      • CompanyDetail
      • StockHistoryValue
      • Code
      • StockHistory
      • CompanyWithRelations
      • StockEod
      • CompanyListPage
      • StockProfile
      • Person
      • StockIncomeStatement
      • ShabJournal
      • StockBalanceSheet
      • PersonCompanyLink
      • StockCashFlow
      • PersonWithCompanies
      • StockFinancials
      • PersonListPage
      • StockKeyExecutive

    StockFinancials

    {
        "symbol": "string",
        "period": "annual",
        "currency": "string",
        "income_statement": [
            {
                "id": 0,
                "symbol": "string",
                "period": "annual",
                "fiscal_date": "2019-08-24",
                "fiscal_year": 0,
                "fiscal_quarter": 0,
                "currency": "string",
                "revenue": 0,
                "cost_of_revenue": 0,
                "gross_profit": 0,
                "operating_expenses": 0,
                "ebitda": 0,
                "operating_income": 0,
                "pretax_income": 0,
                "tax_expense": 0,
                "net_income": 0,
                "eps_basic": 0,
                "eps_diluted": 0
            }
        ],
        "balance_sheet": [
            {
                "id": 0,
                "symbol": "string",
                "period": "annual",
                "fiscal_date": "2019-08-24",
                "fiscal_year": 0,
                "fiscal_quarter": 0,
                "currency": "string",
                "cash_and_equivalents": 0,
                "total_current_assets": 0,
                "property_plant_equipment_net": 0,
                "goodwill_and_intangibles": 0,
                "total_assets": 0,
                "current_liabilities": 0,
                "long_term_debt": 0,
                "total_liabilities": 0,
                "total_equity": 0
            }
        ],
        "cash_flow": [
            {
                "id": 0,
                "symbol": "string",
                "period": "annual",
                "fiscal_date": "2019-08-24",
                "fiscal_year": 0,
                "fiscal_quarter": 0,
                "currency": "string",
                "operating_cash_flow": 0,
                "capital_expenditure": 0,
                "free_cash_flow": 0,
                "investing_cash_flow": 0,
                "financing_cash_flow": 0,
                "dividends_paid": 0,
                "share_buybacks": 0,
                "net_change_in_cash": 0
            }
        ],
        "ratios": {
            "gross_margin": 0,
            "net_margin": 0
        }
    }
    Built with