> ## 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

> Get the full Finviz snapshot for a ticker: fundamentals, valuation, ownership, and technicals

**Price:** 1 credit

**⚠️ Common errors:** 412: Ticker symbol not found



## OpenAPI

````yaml /openapi/finance-markets.json post /api/finviz/quotes
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:
    post:
      tags:
        - /finviz
      summary: /finviz/quotes
      description: >-
        Get the full Finviz snapshot for a ticker: fundamentals, valuation,
        ownership, and technicals


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Ticker symbol not found
      operationId: __api_finviz_quotes_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FinvizQuotesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FinvizQuote'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FinvizQuotesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        ticker:
          type: string
          minLength: 1
      type: object
      required:
        - ticker
    FinvizQuote:
      properties:
        '@type':
          type: string
          default: FinvizQuote
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        sector:
          anyOf:
            - type: string
            - type: 'null'
        industry:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        exchange:
          anyOf:
            - type: string
            - type: 'null'
        index:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        change_percent:
          anyOf:
            - type: number
            - type: 'null'
        prev_close:
          anyOf:
            - type: number
            - type: 'null'
        target_price:
          anyOf:
            - type: number
            - type: 'null'
        market_cap:
          anyOf:
            - type: number
            - type: 'null'
        enterprise_value:
          anyOf:
            - type: number
            - type: 'null'
        income:
          anyOf:
            - type: number
            - type: 'null'
        sales:
          anyOf:
            - type: number
            - type: 'null'
        book_per_share:
          anyOf:
            - type: number
            - type: 'null'
        cash_per_share:
          anyOf:
            - type: number
            - type: 'null'
        dividend_ttm:
          anyOf:
            - type: number
            - type: 'null'
        dividend_yield_percent:
          anyOf:
            - type: number
            - type: 'null'
        dividend_est:
          anyOf:
            - type: number
            - type: 'null'
        dividend_est_yield_percent:
          anyOf:
            - type: number
            - type: 'null'
        dividend_ex_date:
          anyOf:
            - type: string
            - type: 'null'
        dividend_growth_3y_percent:
          anyOf:
            - type: number
            - type: 'null'
        dividend_growth_5y_percent:
          anyOf:
            - type: number
            - type: 'null'
        employee_count:
          anyOf:
            - type: integer
            - type: 'null'
        pe:
          anyOf:
            - type: number
            - type: 'null'
        forward_pe:
          anyOf:
            - type: number
            - type: 'null'
        peg:
          anyOf:
            - type: number
            - type: 'null'
        ps:
          anyOf:
            - type: number
            - type: 'null'
        pb:
          anyOf:
            - type: number
            - type: 'null'
        pc:
          anyOf:
            - type: number
            - type: 'null'
        pfcf:
          anyOf:
            - type: number
            - type: 'null'
        ev_ebitda:
          anyOf:
            - type: number
            - type: 'null'
        ev_sales:
          anyOf:
            - type: number
            - type: 'null'
        quick_ratio:
          anyOf:
            - type: number
            - type: 'null'
        current_ratio:
          anyOf:
            - type: number
            - type: 'null'
        debt_eq:
          anyOf:
            - type: number
            - type: 'null'
        lt_debt_eq:
          anyOf:
            - type: number
            - type: 'null'
        eps_ttm:
          anyOf:
            - type: number
            - type: 'null'
        eps_next_y:
          anyOf:
            - type: number
            - type: 'null'
        eps_next_q:
          anyOf:
            - type: number
            - type: 'null'
        eps_this_y_percent:
          anyOf:
            - type: number
            - type: 'null'
        eps_next_y_percent:
          anyOf:
            - type: number
            - type: 'null'
        eps_next_5y_percent:
          anyOf:
            - type: number
            - type: 'null'
        eps_past_3y_percent:
          anyOf:
            - type: number
            - type: 'null'
        eps_past_5y_percent:
          anyOf:
            - type: number
            - type: 'null'
        eps_qoq_percent:
          anyOf:
            - type: number
            - type: 'null'
        eps_yoy_ttm_percent:
          anyOf:
            - type: number
            - type: 'null'
        eps_surprise_percent:
          anyOf:
            - type: number
            - type: 'null'
        sales_past_3y_percent:
          anyOf:
            - type: number
            - type: 'null'
        sales_past_5y_percent:
          anyOf:
            - type: number
            - type: 'null'
        sales_qoq_percent:
          anyOf:
            - type: number
            - type: 'null'
        sales_yoy_ttm_percent:
          anyOf:
            - type: number
            - type: 'null'
        sales_surprise_percent:
          anyOf:
            - type: number
            - type: 'null'
        roa_percent:
          anyOf:
            - type: number
            - type: 'null'
        roe_percent:
          anyOf:
            - type: number
            - type: 'null'
        roic_percent:
          anyOf:
            - type: number
            - type: 'null'
        gross_margin_percent:
          anyOf:
            - type: number
            - type: 'null'
        operating_margin_percent:
          anyOf:
            - type: number
            - type: 'null'
        profit_margin_percent:
          anyOf:
            - type: number
            - type: 'null'
        payout_percent:
          anyOf:
            - type: number
            - type: 'null'
        shares_outstanding:
          anyOf:
            - type: number
            - type: 'null'
        shares_float:
          anyOf:
            - type: number
            - type: 'null'
        insider_own_percent:
          anyOf:
            - type: number
            - type: 'null'
        insider_trans_percent:
          anyOf:
            - type: number
            - type: 'null'
        inst_own_percent:
          anyOf:
            - type: number
            - type: 'null'
        inst_trans_percent:
          anyOf:
            - type: number
            - type: 'null'
        short_float_percent:
          anyOf:
            - type: number
            - type: 'null'
        short_ratio:
          anyOf:
            - type: number
            - type: 'null'
        short_interest:
          anyOf:
            - type: number
            - type: 'null'
        perf_week_percent:
          anyOf:
            - type: number
            - type: 'null'
        perf_month_percent:
          anyOf:
            - type: number
            - type: 'null'
        perf_quarter_percent:
          anyOf:
            - type: number
            - type: 'null'
        perf_half_year_percent:
          anyOf:
            - type: number
            - type: 'null'
        perf_year_percent:
          anyOf:
            - type: number
            - type: 'null'
        perf_ytd_percent:
          anyOf:
            - type: number
            - type: 'null'
        perf_3y_percent:
          anyOf:
            - type: number
            - type: 'null'
        perf_5y_percent:
          anyOf:
            - type: number
            - type: 'null'
        perf_10y_percent:
          anyOf:
            - type: number
            - type: 'null'
        beta:
          anyOf:
            - type: number
            - type: 'null'
        atr:
          anyOf:
            - type: number
            - type: 'null'
        rsi:
          anyOf:
            - type: number
            - type: 'null'
        volatility_week_percent:
          anyOf:
            - type: number
            - type: 'null'
        volatility_month_percent:
          anyOf:
            - type: number
            - type: 'null'
        sma20_percent:
          anyOf:
            - type: number
            - type: 'null'
        sma50_percent:
          anyOf:
            - type: number
            - type: 'null'
        sma200_percent:
          anyOf:
            - type: number
            - type: 'null'
        high_52w_price:
          anyOf:
            - type: number
            - type: 'null'
        high_52w_percent:
          anyOf:
            - type: number
            - type: 'null'
        low_52w_price:
          anyOf:
            - type: number
            - type: 'null'
        low_52w_percent:
          anyOf:
            - type: number
            - type: 'null'
        rel_volume:
          anyOf:
            - type: number
            - type: 'null'
        avg_volume:
          anyOf:
            - type: number
            - type: 'null'
        volume:
          anyOf:
            - type: integer
            - type: 'null'
        recommendation:
          anyOf:
            - type: number
            - type: 'null'
        earnings:
          anyOf:
            - type: string
            - type: 'null'
        ipo_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    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

````