> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /finviz/quotes/financials

> Get income statement, balance sheet, cash flow, and financial ratios for a ticker

**Price:** 1 credit per 4 results

**⚠️ Common errors:** 412: Ticker symbol not found or no financial data available



## OpenAPI

````yaml /openapi/finance-markets.json post /api/finviz/quotes/financials
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/finviz/quotes/financials:
    post:
      tags:
        - /finviz
      summary: /finviz/quotes/financials
      description: >-
        Get income statement, balance sheet, cash flow, and financial ratios for
        a ticker


        **Price:** 1 credit per 4 results


        **⚠️ Common errors:** 412: Ticker symbol not found or no financial data
        available
      operationId: __api_finviz_quotes_financials_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FinvizQuotesFinancialsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FinvizFinancials'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FinvizQuotesFinancialsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        ticker:
          type: string
          minLength: 1
        frequency:
          $ref: '#/components/schemas/FinvizFrequency'
          default: annual
      type: object
      required:
        - ticker
    FinvizFinancials:
      properties:
        '@type':
          type: string
          default: FinvizFinancials
        ticker:
          type: string
        currency:
          anyOf:
            - type: string
            - type: 'null'
        periods:
          items:
            type: string
          type: array
        income_statement:
          items:
            $ref: '#/components/schemas/FinvizFinancialLineItem'
          type: array
        balance_sheet:
          items:
            $ref: '#/components/schemas/FinvizFinancialLineItem'
          type: array
        cash_flow:
          items:
            $ref: '#/components/schemas/FinvizFinancialLineItem'
          type: array
        financial_ratios:
          items:
            $ref: '#/components/schemas/FinvizFinancialLineItem'
          type: array
      type: object
      required:
        - ticker
        - periods
        - income_statement
        - balance_sheet
        - cash_flow
        - financial_ratios
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FinvizFrequency:
      type: string
      enum:
        - annual
        - quarterly
    FinvizFinancialLineItem:
      properties:
        '@type':
          type: string
          default: FinvizFinancialLineItem
        label:
          type: string
        values:
          additionalProperties:
            anyOf:
              - type: number
              - type: 'null'
          type: object
      type: object
      required:
        - label
        - values
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````