Skip to content
Eden Engine

Market Index Detail (by Symbol)

omnial/get-index-detail

Given a market index's ticker symbol (e.g. COMP, NDX, NBI), returns its most recent quote: last sale price, previous close, net and percent change, the day's high and low, trading volume, and the direction of the move. A symbol that does not match a known index 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": "Index symbol (e.g. COMP, NDX, NBI)."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "indices": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "low": {
                "type": "number",
                "description": "The day's low."
              },
              "high": {
                "type": "number",
                "description": "The day's high."
              },
              "name": {
                "type": "string",
                "description": "Full name of the index, e.g. 'NASDAQ Composite Index'."
              },
              "symbol": {
                "type": "string",
                "description": "Index ticker symbol, e.g. 'COMP'."
              },
              "volume": {
                "type": "string",
                "description": "Formatted integer string with thousands separators."
              },
              "datetime": {
                "type": "string",
                "description": "ISO 8601 local datetime of the quote, e.g. '2026-09-04T17:16:01' -- no timezone offset in the observed value. Looks numeric-adjacent but is a timestamp, never a phone number or other contact detail."
              },
              "netChange": {
                "type": "string",
                "description": "Signed formatted string, e.g. '-77.07'."
              },
              "timeStamp": {
                "type": "string",
                "description": "Human-readable date label for the quote, e.g. 'Sep 4, 2026' -- not a full timestamp."
              },
              "indexCharts": {
                "type": "null",
                "description": "Observed as null on the one real record captured; its populated shape is unconfirmed."
              },
              "chartOpenTime": {
                "type": "number",
                "description": "Epoch milliseconds for the chart's opening time."
              },
              "lastSalePrice": {
                "type": "string",
                "description": "Formatted price string with thousands separators, e.g. '26,506.99'."
              },
              "previousClose": {
                "type": "string",
                "description": "Formatted like `lastSalePrice`."
              },
              "chartCloseTime": {
                "type": "number",
                "description": "Epoch milliseconds for the chart's closing time."
              },
              "deltaIndicator": {
                "type": "string",
                "description": "Direction of the move, e.g. 'down'; only 'down' observed so far."
              },
              "percentageChange": {
                "type": "string",
                "description": "Signed formatted percent string, e.g. '-0.29%'."
              }
            },
            "additionalProperties": true
          },
          "description": "One entry per index matching the requested symbol. Empty when the symbol does not match any known index (invalid-symbol.json) -- not an error condition."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both fixtures observed."
    }
  },
  "description": "The index-detail 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 8, 2026