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)

REST Bridge Endpoint https://context.gnist.ai/rest/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).
Request Body
{
  "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)
Request Body
{
  "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)
Request Body
{
  "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)
Request Body
{
  "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")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/ticker-search/lookup_ticker" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"ticker": "example"}'
Python
import httpx

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

Related Toolkits (Finance)

Resources