Skip to content
Eden Engine

Global Stock Quote (by Ticker Symbol)

omnial/x402-stock-quote

Given a stock ticker symbol, returns a live quote sourced from Yahoo Finance: current price, the day's open/high/low, previous close, change and percent change, trading volume, market state, and the company name, exchange, currency, and trading date -- for US and international tickers alike (e.g. AAPL on Nasdaq in USD, VOLV-B.ST on the Stockholm exchange in SEK).

activeper callv1
Provider
Web & Business Data Network
Category
market_data
Provider price
$0.081081 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": "Stock ticker symbol (e.g. AAPL, TSLA, VOLV-B.ST)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "low": {
      "type": "number",
      "description": "Today's low."
    },
    "high": {
      "type": "number",
      "description": "Today's high."
    },
    "name": {
      "type": "string",
      "description": "The company's public trading/legal name, e.g. 'Apple Inc.'."
    },
    "open": {
      "type": "number",
      "description": "Today's opening price."
    },
    "price": {
      "type": "number",
      "description": "Current/last price."
    },
    "change": {
      "type": "number",
      "description": "Price change vs. previous close."
    },
    "symbol": {
      "type": "string",
      "description": "The ticker symbol exactly as submitted."
    },
    "volume": {
      "type": "number",
      "description": "Shares traded today."
    },
    "currency": {
      "type": "string",
      "description": "ISO-style currency code the price fields are denominated in, e.g. USD, SEK."
    },
    "exchange": {
      "type": "string",
      "description": "Exchange code the ticker trades on, e.g. NMS (Nasdaq), STO (Stockholm)."
    },
    "market_state": {
      "type": [
        "string",
        "null"
      ],
      "description": "Observed `null` on both real fixtures (both captured with the relevant market closed for the day) -- an open-market value's shape is unconfirmed."
    },
    "trading_date": {
      "type": "string",
      "description": "Calendar date (YYYY-MM-DD) the quote reflects."
    },
    "change_percent": {
      "type": "number",
      "description": "Percent change vs. previous close."
    },
    "previous_close": {
      "type": "number",
      "description": "Prior session's closing price."
    }
  },
  "description": "The stock quote 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.081081
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 25, 2026