Skip to content
Eden Engine

Stock & ETF Ticker Search (by Name or Symbol)

omnial/search-stocks

Given a company name or ticker keyword, returns matching stocks, ETFs, and funds across global exchanges -- each match's ticker symbol, name, instrument type, latest price, and market cap. An unmatched search keyword returns zero results 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": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search keyword — a company name or ticker symbol (e.g. 'AAPL', 'Microsoft', 'Tesla')."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "count": {
          "type": "number",
          "description": "Number of results returned (50 on the Apple call, 0 on the no-match call)."
        },
        "query": {
          "type": "string",
          "description": "Echoes the search keyword that was sent."
        },
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "type": {
                "type": "string",
                "description": "'Stock', 'ETF', or 'Fund' on the Apple call."
              },
              "price": {
                "type": "number",
                "description": "Latest price, in the listing's own currency."
              },
              "symbol": {
                "type": "string",
                "description": "Ticker symbol. Plain for major US listings (e.g. 'AAPL'); an exchange-prefixed form (e.g. '@lon/AAPS', '@tyo/2788', '@otc/AAPI') for other exchanges, observed on the Apple call."
              },
              "market_cap": {
                "type": "number",
                "description": "Observed negative (-3) on a small number of Fund-type entries in the Apple call -- meaning unconfirmed, do not assume market_cap is always a real positive market capitalization."
              }
            },
            "additionalProperties": true
          },
          "description": "Empty array when the search keyword matches nothing."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both real calls observed."
    }
  },
  "description": "The search result set 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