GnistAI GnistAI
Log in

Financial Markets

Exchange rates, commodity prices, ETF holdings, and insider trading data from central banks and financial regulators. One toolkit for global financial market intelligence.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 type: dataset aggregator type type dataset aggregator dataset aggregator Finance

Data source: ECB, Norges Bank, FRED, SEC EDGAR

REST Bridge Endpoint https://context.gnist.ai/rest/financial-markets/
Authentication

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

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

Tools (3)

search_financial_markets

Search across exchange rates, commodities, ETF holdings, and insider trading.

Queries five financial data sources in parallel:
- ECB exchange rates (30+ currencies, uses query as base currency if 3-letter code)
- ECB & Norges Bank policy rates (latest monetary policy decisions)
- Commodity prices via FRED (energy, metals, agriculture — matches by name/category)
- ETF holdings via SEC EDGAR (interprets query as fund ticker)
- Insider trading via SEC Form 4 (interprets query as company ticker)

Examples:
search_financial_markets(query="USD") # USD exchange rates + policy rates
search_financial_markets(query="gold") # gold + precious metals prices
search_financial_markets(query="AAPL") # Apple insider trading + ETF exposure
search_financial_markets(query="SPY") # SPY ETF holdings + insider activity

ParameterTypeRequiredDescription
querystringrequiredCurrency code (e.g. 'USD'), commodity name (e.g. 'gold'), stock ticker (e.g. 'AAPL'), or general term.
limitintegeroptionalMax results per source. (default: 10)
Request Body
{
  "query": "example"
}
list_financial_sources

List all financial market data sources, their coverage, and data types.

Shows which exchange rate providers, commodity databases, and SEC filing
sources are queried during a financial markets search.

Examples:
list_financial_sources()

Request Body
{
  "query": "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/financial-markets/search_financial_markets" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"query": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/financial-markets/search_financial_markets",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "query": "example"
},
)
print(resp.json())

Related Toolkits (Finance)

Resources