Skip to content
Eden Engine

Real-Time Stock Quote (by Ticker Symbol)

omnial/get-quote

Given one or more comma-separated stock ticker symbols, returns a real-time market snapshot for each: current price, bid/ask, day and 52-week ranges, volume, market cap, market open/closed state, and key valuation figures (P/E, EPS, dividend yield). A ticker that does not exist returns an empty result rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
equities
Provider price
$0.06825 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",
  "required": [
    "symbols"
  ],
  "properties": {
    "symbols": {
      "type": "string",
      "description": "Comma-separated list of stock ticker symbols (e.g., AAPL,MSFT,TSLA)."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "status",
    "data"
  ],
  "properties": {
    "data": {
      "type": "object",
      "required": [
        "quotes"
      ],
      "properties": {
        "quotes": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "ask": {
                "type": "number"
              },
              "bid": {
                "type": "number"
              },
              "market": {
                "type": "string"
              },
              "region": {
                "type": "string"
              },
              "symbol": {
                "type": "string"
              },
              "askSize": {
                "type": "number"
              },
              "bidSize": {
                "type": "number"
              },
              "currency": {
                "type": "string"
              },
              "exchange": {
                "type": "string"
              },
              "language": {
                "type": "string"
              },
              "longName": {
                "type": "string",
                "description": "Full registered company name."
              },
              "typeDisp": {
                "type": "string"
              },
              "bookValue": {
                "type": "number"
              },
              "forwardPE": {
                "type": "number"
              },
              "marketCap": {
                "type": "number"
              },
              "priceHint": {
                "type": "number"
              },
              "quoteType": {
                "type": "string"
              },
              "shortName": {
                "type": "string",
                "description": "Short company name, e.g. 'Apple Inc.'."
              },
              "tradeable": {
                "type": "boolean"
              },
              "epsForward": {
                "type": "number"
              },
              "trailingPE": {
                "type": "number"
              },
              "displayName": {
                "type": "string",
                "description": "Consumer-facing display name, e.g. 'Apple'."
              },
              "marketState": {
                "type": "string",
                "description": "e.g. 'CLOSED', 'REGULAR', 'PRE'/'POST'."
              },
              "priceToBook": {
                "type": "number"
              },
              "triggerable": {
                "type": "boolean"
              },
              "dividendDate": {
                "type": "number",
                "description": "Unix timestamp, seconds."
              },
              "dividendRate": {
                "type": "number"
              },
              "esgPopulated": {
                "type": "boolean"
              },
              "fulldayPrice": {
                "type": "number"
              },
              "dividendYield": {
                "type": "number"
              },
              "fulldayChange": {
                "type": "number"
              },
              "epsCurrentYear": {
                "type": "number"
              },
              "messageBoardId": {
                "type": "string"
              },
              "postMarketTime": {
                "type": "number",
                "description": "Unix timestamp, seconds."
              },
              "sourceInterval": {
                "type": "number"
              },
              "cryptoTradeable": {
                "type": "boolean"
              },
              "fiftyDayAverage": {
                "type": "number"
              },
              "fiftyTwoWeekLow": {
                "type": "number"
              },
              "postMarketPrice": {
                "type": "number"
              },
              "quoteSourceName": {
                "type": "string",
                "description": "The upstream quote feed name, e.g. 'Nasdaq Real Time Price'."
              },
              "corporateActions": {
                "type": "array",
                "items": {},
                "description": "Observed as an empty array on the one real fixture that populated it (AAPL) -- item shape is unconfirmed; a genuinely populated corporate-actions entry (e.g. a pending split or spinoff) was never observed."
              },
              "fiftyTwoWeekHigh": {
                "type": "number"
              },
              "fullExchangeName": {
                "type": "string"
              },
              "postMarketChange": {
                "type": "number"
              },
              "earningsTimestamp": {
                "type": "number",
                "description": "Unix timestamp, seconds."
              },
              "fiftyTwoWeekRange": {
                "type": "string",
                "description": "Low-high price range as a single string, e.g. '225.95 - 344.57'. A capture-time heuristic flagged this leaf as a possible phone number; the observed value is a numeric price range, not a phone number (see verification.notes)."
              },
              "financialCurrency": {
                "type": "string"
              },
              "regularMarketOpen": {
                "type": "number"
              },
              "regularMarketTime": {
                "type": "number",
                "description": "Unix timestamp, seconds."
              },
              "sharesOutstanding": {
                "type": "number"
              },
              "regularMarketPrice": {
                "type": "number"
              },
              "priceEpsCurrentYear": {
                "type": "number"
              },
              "regularMarketChange": {
                "type": "number"
              },
              "regularMarketDayLow": {
                "type": "number"
              },
              "regularMarketVolume": {
                "type": "number"
              },
              "averageAnalystRating": {
                "type": "string",
                "description": "e.g. '2.2 - Buy'."
              },
              "earningsTimestampEnd": {
                "type": "number",
                "description": "Unix timestamp, seconds."
              },
              "exchangeTimezoneName": {
                "type": "string",
                "description": "IANA timezone name, e.g. 'America/New_York'."
              },
              "fulldayChangePercent": {
                "type": "number"
              },
              "hasPrePostMarketData": {
                "type": "boolean"
              },
              "regularMarketDayHigh": {
                "type": "number"
              },
              "twoHundredDayAverage": {
                "type": "number"
              },
              "exchangeDataDelayedBy": {
                "type": "number"
              },
              "fiftyDayAverageChange": {
                "type": "number"
              },
              "fiftyTwoWeekLowChange": {
                "type": "number"
              },
              "gmtOffSetMilliseconds": {
                "type": "number"
              },
              "regularMarketDayRange": {
                "type": "string",
                "description": "Low-high price range as a single string, e.g. '317.86 - 328.93'. A capture-time heuristic flagged this leaf as a possible phone number; the observed value is a numeric price range, not a phone number (see verification.notes)."
              },
              "earningsTimestampStart": {
                "type": "number",
                "description": "Unix timestamp, seconds."
              },
              "fiftyTwoWeekHighChange": {
                "type": "number"
              },
              "isEarningsDateEstimate": {
                "type": "boolean"
              },
              "averageDailyVolume10Day": {
                "type": "number"
              },
              "epsTrailingTwelveMonths": {
                "type": "number"
              },
              "postMarketChangePercent": {
                "type": "number"
              },
              "averageDailyVolume3Month": {
                "type": "number"
              },
              "earningsCallTimestampEnd": {
                "type": "number",
                "description": "Unix timestamp, seconds."
              },
              "impliedSharesOutstanding": {
                "type": "number"
              },
              "exchangeTimezoneShortName": {
                "type": "string",
                "description": "Timezone abbreviation, e.g. 'EDT'."
              },
              "fiftyTwoWeekChangePercent": {
                "type": "number"
              },
              "customPriceAlertConfidence": {
                "type": "string"
              },
              "earningsCallTimestampStart": {
                "type": "number",
                "description": "Unix timestamp, seconds."
              },
              "firstTradeDateMilliseconds": {
                "type": "number"
              },
              "regularMarketChangePercent": {
                "type": "number"
              },
              "regularMarketPreviousClose": {
                "type": "number"
              },
              "trailingAnnualDividendRate": {
                "type": "number"
              },
              "twoHundredDayAverageChange": {
                "type": "number"
              },
              "trailingAnnualDividendYield": {
                "type": "number"
              },
              "fiftyDayAverageChangePercent": {
                "type": "number"
              },
              "fiftyTwoWeekLowChangePercent": {
                "type": "number"
              },
              "fiftyTwoWeekHighChangePercent": {
                "type": "number"
              },
              "twoHundredDayAverageChangePercent": {
                "type": "number"
              }
            },
            "additionalProperties": true
          },
          "description": "One entry per matched ticker. Empty on the one real not-found call observed (an unrecognized ticker symbol) -- absence of a matching quote is signaled by an empty array, not an error status."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both real calls observed."
    }
  },
  "description": "The quote lookup result, 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.06825
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 8, 2026