{
  "openapi": "3.0.1",
  "info": {
    "title": "Finviz Stock Screener & Fundamentals | 83 fields | from $2/1K",
    "description": "Scrape stock fundamentals and technicals from Finviz.com. Quote mode: 83 fields per ticker (valuation, margins, performance, ownership, technicals). Screener mode: preset signal screens (gainers/losers, new highs/lows, unusual volume, insider trades, up/downgrades). No API key required.",
    "version": "0.1",
    "x-build-id": "wsndPGm8bB8CEsgfA"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/bovi~finviz-stock-screener/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-bovi-finviz-stock-screener",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/bovi~finviz-stock-screener/runs": {
      "post": {
        "operationId": "runs-sync-bovi-finviz-stock-screener",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/bovi~finviz-stock-screener/run-sync": {
      "post": {
        "operationId": "run-sync-bovi-finviz-stock-screener",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "quote",
              "screener"
            ],
            "type": "string",
            "description": "quote: 83-field fundamentals/technicals snapshot per ticker. screener: list of tickers matching a preset signal or custom filters."
          },
          "symbols": {
            "title": "Symbols",
            "type": "array",
            "description": "Quote mode only. Finviz ticker symbols, e.g. AAPL, MSFT, TSLA.",
            "items": {
              "type": "string"
            }
          },
          "signal": {
            "title": "Screener signal (preset)",
            "enum": [
              "ta_topgainers",
              "ta_toplosers",
              "ta_newhigh",
              "ta_newlow",
              "ta_overbought",
              "ta_oversold",
              "ta_mostvolatile",
              "ta_mostactive",
              "ta_unusualvolume",
              "n_upgrades",
              "n_downgrades",
              "n_earningsbefore",
              "n_earningsafter",
              "n_majornews",
              "it_latestbuys",
              "it_latestsales",
              "ta_p_tlsupport",
              "ta_p_tlresistance",
              "ta_p_horizontal",
              "ta_p_wedgeup",
              "ta_p_wedge",
              "ta_p_wedgedown",
              "ta_p_wedgeresistance",
              "ta_p_wedgesupport",
              "ta_p_channelup",
              "ta_p_channel",
              "ta_p_channeldown",
              "ta_p_doubletop",
              "ta_p_multipletop",
              "ta_p_doublebottom",
              "ta_p_multiplebottom",
              "ta_p_headandshoulders",
              "ta_p_headandshouldersinv"
            ],
            "type": "string",
            "description": "Screener mode. A preset signal screen explicitly allow-listed in finviz.com/robots.txt — top gainers/losers, new highs/lows, overbought/oversold, unusual volume, most active/volatile, analyst upgrades/downgrades, upcoming earnings, latest insider buys/sells, major news, and 17 chart-pattern presets. Leave blank + use 'filters' for a custom (non-robots-allowlisted) query."
          },
          "filters": {
            "title": "Custom filters (advanced, opt-in)",
            "type": "string",
            "description": "Screener mode. Raw Finviz filter string (e.g. 'sec_technology,cap_large,geo_usa'). WARNING: unlike the 'signal' presets above, arbitrary custom filter combinations on /screener are NOT in finviz.com/robots.txt's explicit allow-list (robots.txt disallows '/screener?*' generically, allowing only the named presets). This still returns data technically, but is outside the site's declared robots.txt allowance — use at your own discretion. Leave blank to use 'signal' only."
          },
          "view": {
            "title": "Screener view",
            "type": "string",
            "description": "Screener mode. Finviz view id for the result table layout. Ignored when 'signal' is set (each signal has a fixed robots.txt-declared view). Default 111 = Overview (Ticker/Company/Sector/Industry/Country/MktCap/PE/Price/Change/Volume)."
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 1,
            "type": "integer",
            "description": "Screener mode: max rows to return (paginated 20/page). Quote mode: not used (one record per symbol). Default 100."
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Apify proxy settings. Default residential proxy recommended for reliable access. The actor uses curl_cffi Chrome impersonation to match a real Chrome TLS profile.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}