Skip to content
Eden Engine

Stock Screener (by Exchange & Market Cap)

omnial/get-stock-screener

Given an exchange (NASDAQ, NYSE, or AMEX) and a market-cap band (mega, large, mid, small, micro, or nano), returns the matching stocks -- ticker symbol, company name, last sale price, net and percent change, and market cap -- plus the total number of matches across all pages. Supports offset/limit pagination; a page past the last one returns an empty list rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
equities
Provider price
$0.01365 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "anyOf": [
    {
      "required": [
        "market_cap"
      ]
    },
    {
      "required": [
        "exchange"
      ]
    }
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Max results to return."
    },
    "offset": {
      "type": "integer",
      "description": "Offset for pagination."
    },
    "exchange": {
      "type": "string",
      "description": "Exchange filter: NASDAQ, NYSE, AMEX."
    },
    "market_cap": {
      "type": "string",
      "description": "Market cap filter: mega, large, mid, small, micro, nano."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "screener": {
          "type": "object",
          "properties": {
            "asof": {
              "type": "string",
              "description": "Human-readable as-of label, e.g. 'Last price as of Sep 4, 2026'."
            },
            "table": {
              "type": "object",
              "properties": {
                "rows": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "url": {
                        "type": "string",
                        "description": "Relative path (not an absolute URL) to the stock's detail page on the vendor's own site, e.g. '/market-activity/stocks/nvda'."
                      },
                      "name": {
                        "type": "string",
                        "description": "The company's listed name, e.g. 'NVIDIA Corporation Common Stock'."
                      },
                      "symbol": {
                        "type": "string",
                        "description": "Ticker symbol, e.g. 'NVDA'."
                      },
                      "lastsale": {
                        "type": "string",
                        "description": "Formatted price string, e.g. '$230.36'."
                      },
                      "marketCap": {
                        "type": "string",
                        "description": "Comma-formatted market cap in dollars, e.g. '5,551,676,000,000'."
                      },
                      "netchange": {
                        "type": "string",
                        "description": "Net change as a numeric string, e.g. '1.91' or '-8.24'."
                      },
                      "pctchange": {
                        "type": "string",
                        "description": "Percent change as a formatted string, e.g. '0.836%'."
                      }
                    },
                    "additionalProperties": true
                  },
                  "description": "One entry per matching stock on this page. Absent when the requested offset is past the last page of results (amex-nano-cap-empty-page.json), not an error condition."
                }
              },
              "description": "Absent (or `{}`) on an offset past the last matching page -- confirmed on amex-nano-cap-empty-page.json, where the underlying rows/headers came back null rather than an error.",
              "additionalProperties": true
            },
            "totalrecords": {
              "type": "number",
              "description": "Total matching records across all pages for the given filters, e.g. 32 for the NASDAQ mega-cap query, 124 for the AMEX nano-cap query -- stays populated even on an offset past the last page."
            }
          },
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on all three fixtures observed."
    }
  },
  "description": "The screener record, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01365
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026