GnistAI GnistAI
Log in

Company Ticker Search

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

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Finance

Data source: Curated dataset (exchange listings)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/ticker-search/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-ticker-search": {
      "url": "https://context.gnist.ai/mcp/ticker-search/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
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"}}}'

API REST API

API Root https://context.gnist.ai/rest/ticker-search/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/ticker-search/lookup_ticker?ticker=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/ticker-search/lookup_ticker",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "ticker": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc ticker-search

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

lookup_ticker
Look up a company by its stock ticker symbol.
ParameterTypeRequiredDescription
tickerstringrequiredStock ticker symbol (e.g. AAPL, 7203.T, MC.PA, EQNR.OL).
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)
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)
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)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related