Skip to content
Eden Engine

Historical Daily Stock Prices (OHLCV, by Symbol)

omnial/get-stock-historical-quotes

Given a stock ticker symbol and an optional date range, returns the daily open, high, low, close, and volume for each trading day in range, plus the total number of records returned.

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": {
    "limit": {
      "type": "integer",
      "description": "Number of records to return."
    },
    "symbol": {
      "type": "string",
      "description": "Stock symbol (e.g. AAPL)."
    },
    "to_date": {
      "type": "string",
      "description": "End date in YYYY-MM-DD format. Omitting defaults to today."
    },
    "from_date": {
      "type": "string",
      "description": "Start date in YYYY-MM-DD format. Omitting defaults to one year ago."
    },
    "asset_class": {
      "type": "string",
      "description": "Asset class: stocks, etf, mutualfunds, crypto."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "history": {
          "type": "object",
          "properties": {
            "quotes": {
              "type": "object",
              "properties": {
                "asOf": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Observed as null on the one real fixture available -- its populated shape (if any) is unconfirmed; do not assume this is always present."
                },
                "rows": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "low": {
                        "type": "string",
                        "description": "Formatted currency string, e.g. '$312.80'."
                      },
                      "date": {
                        "type": "string",
                        "description": "e.g. '08/31/2026' (MM/DD/YYYY)."
                      },
                      "high": {
                        "type": "string",
                        "description": "Formatted currency string, e.g. '$321.235'."
                      },
                      "open": {
                        "type": "string",
                        "description": "Formatted currency string, e.g. '$319.60', not a number."
                      },
                      "close": {
                        "type": "string",
                        "description": "Formatted currency string, e.g. '$316.85'."
                      },
                      "volume": {
                        "type": "string",
                        "description": "Comma-formatted integer string, e.g. '41,242,720', not a number."
                      }
                    },
                    "additionalProperties": true
                  },
                  "description": "One entry per trading day in the requested range, most recent first, e.g. 21 entries for a full month of AAPL. A range covering only a non-trading date (a weekend) returns no response body at all rather than an empty array -- see usage.md."
                }
              },
              "additionalProperties": true
            },
            "symbol": {
              "type": "string",
              "description": "Ticker symbol, e.g. 'AAPL'."
            },
            "totalRecords": {
              "type": "integer",
              "description": "Count of trading-day rows returned, e.g. 21 for one month of AAPL."
            }
          },
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on the one real fixture observed."
    }
  },
  "description": "The historical-quotes 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