GnistAI GnistAI
Log in

Company Ticker Search

Global stock ticker search — 120+ companies across 20+ exchanges worldwide.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 type: open dataset type type open dataset open dataset lifecycle: maintained lifecycle lifecycle maintained maintained Finance

Data source: Curated dataset (exchange listings)

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/ticker-search/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (5)

lookup_ticker

Look up a company by its stock ticker symbol.

Returns company name, exchange, country, sector, and market cap category.

ParameterTypeRequiredDescription
tickerstringrequiredStock ticker symbol (e.g. AAPL, 7203.T, MC.PA, EQNR.OL).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "lookup_ticker",
    "arguments": {
      "ticker": "example"
    }
  }
}
search_company_tickers

Search the company ticker database by name or symbol.

ParameterTypeRequiredDescription
querystringrequiredSearch by company name or ticker symbol.
limitintegeroptionalMaximum results to return. (default: 20)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_company_tickers",
    "arguments": {
      "query": "example"
    }
  }
}
list_tickers_by_exchange

List company tickers by stock exchange.

ParameterTypeRequiredDescription
exchangestringrequiredStock exchange name (e.g. NYSE, NASDAQ, LSE, TSE, HKEX, OSE).
limitintegeroptionalMaximum results to return. (default: 50)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_tickers_by_exchange",
    "arguments": {
      "exchange": "example"
    }
  }
}
list_tickers_by_sector

List company tickers by GICS sector.

ParameterTypeRequiredDescription
sectorstringrequiredGICS sector (e.g. Information Technology, Financials, Health Care).
limitintegeroptionalMaximum results to return. (default: 50)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_tickers_by_sector",
    "arguments": {
      "sector": "example"
    }
  }
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/mcp/ticker-search/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "lookup_ticker", "arguments": {"ticker": "example"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/ticker-search/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "lookup_ticker",
    "arguments": {
      "ticker": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Finance)

Resources