Data source: ECB, Norges Bank, FRED, SEC EDGAR
https://context.gnist.ai/rest/financial-markets/
AuthenticationAll 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_marketsSearch 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
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Currency code (e.g. 'USD'), commodity name (e.g. 'gold'), stock ticker (e.g. 'AAPL'), or general term. |
limit | integer | optional | Max results per source. (default: 10) |
{
"query": "example"
}list_financial_sourcesList 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()
{
"query": "example"
}report_feedbackReport 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'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
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"}'
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())