Skip to content
Eden Engine

ETF Quote (by Symbol)

omnial/get-etf-quote

Given an ETF ticker symbol (e.g. QQQ), returns its latest quote: last sale price, net change, percentage change, trading volume, bid/ask, and whether the market is open or closed, plus basic listing details like exchange and asset class. A symbol that isn't a recognized ETF returns an empty result 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",
  "required": [
    "symbol"
  ],
  "properties": {
    "symbol": {
      "type": "string",
      "description": "ETF symbol (e.g. QQQ)."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "quote": {
          "type": "object",
          "properties": {
            "isHeld": {
              "type": "boolean"
            },
            "symbol": {
              "type": "string",
              "description": "e.g. 'QQQ'."
            },
            "exchange": {
              "type": "string",
              "description": "e.g. 'NASDAQ-GM'."
            },
            "keyStats": {
              "type": [
                "object",
                "null"
              ],
              "description": "Observed as `null` on the one real call captured -- shape when populated is unconfirmed."
            },
            "stockType": {
              "type": [
                "string",
                "null"
              ],
              "description": "Observed as `null` on the one real call captured -- shape when populated is unconfirmed."
            },
            "assetClass": {
              "type": "string",
              "description": "e.g. 'ETF'."
            },
            "companyName": {
              "type": "string",
              "description": "The fund/issuer's public trading name, e.g. 'Invesco QQQ Trust, Series 1'."
            },
            "isNasdaq100": {
              "type": "boolean",
              "description": "Observed `false` even for QQQ, which tracks the Nasdaq-100 index, on the one real call captured -- do not assume this reflects index membership."
            },
            "primaryData": {
              "type": "object",
              "properties": {
                "volume": {
                  "type": "string",
                  "description": "Comma-separated numeric string, e.g. '28,342,148', not a number."
                },
                "askSize": {
                  "type": "string",
                  "description": "Numeric string, or 'N/A' as with askPrice."
                },
                "bidSize": {
                  "type": "string",
                  "description": "Numeric string, or 'N/A' as with bidPrice."
                },
                "askPrice": {
                  "type": "string",
                  "description": "Formatted price string, or the literal 'N/A' when no live ask exists (e.g. market closed)."
                },
                "bidPrice": {
                  "type": "string",
                  "description": "Formatted price string, or the literal 'N/A' when no live bid exists (e.g. market closed)."
                },
                "currency": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Observed as `null` on the one real call captured -- shape when populated is unconfirmed."
                },
                "netChange": {
                  "type": "string",
                  "description": "Formatted string, e.g. '-0.60'."
                },
                "isRealTime": {
                  "type": "boolean"
                },
                "lastSalePrice": {
                  "type": "string",
                  "description": "Formatted currency string, e.g. '$718.36', not a number."
                },
                "deltaIndicator": {
                  "type": "string",
                  "description": "e.g. 'down', 'up'."
                },
                "percentageChange": {
                  "type": "string",
                  "description": "Formatted string, e.g. '-0.08%'."
                },
                "lastTradeTimestamp": {
                  "type": "string",
                  "description": "Despite the name, a DATE only, e.g. 'Sep 8, 2026' -- no time of day was observed on the one real call captured."
                }
              },
              "additionalProperties": true
            },
            "marketStatus": {
              "type": "string",
              "description": "e.g. 'Closed', 'Open'."
            },
            "notifications": {
              "type": "array",
              "items": {},
              "description": "Observed as an empty array on the one real call captured -- item shape is unconfirmed."
            },
            "secondaryData": {
              "type": [
                "object",
                "null"
              ],
              "description": "Observed as `null` (likely pre/post-market data, unpopulated during a closed market on the one real call captured) -- shape when populated is unconfirmed."
            },
            "isNasdaqListed": {
              "type": "boolean",
              "description": "Observed `false` even for a Nasdaq-exchange-listed fund (QQQ, exchange 'NASDAQ-GM') on the one real call captured -- do not assume this tracks the `exchange` field."
            }
          },
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on the real found-symbol call observed."
    }
  },
  "description": "The ETF quote record, as returned at routing.responseResultPath ($.output). Shapes to `{}` when the requested symbol is not a recognized ETF (see invalid-symbol-error.json) -- no field here is guaranteed present.",
  "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 15, 2026