Access Synapse
One API key, four ways in — a Python SDK, a REST API, an MCP server for AI agents, and bulk Parquet exports for local analysis.
Python SDK
Install from PyPI and start querying in two lines.
pip install synapse-discovery
from synapse_discovery import SynapseClient
client = SynapseClient("YOUR_API_KEY")
aapl = client.fundamentals("AAPL")[0]
REST API
Any language, any stack. Authenticate with an API-key header.
curl -H "X-API-Key: YOUR_API_KEY" \
https://synapsediscovery.io/api/v1/entity/AAPL
MCP Server AI-native
Let Claude, GPT, and other agents query directly — 11 tools, responses built for LLMs.
{
"mcpServers": {
"synapse": {
"url": "https://synapsediscovery.io/mcp",
"headers": { "X-API-Key": "YOUR_API_KEY" }
}
}
}
Bulk Parquet Developer+
Pull the universe as partitioned Parquet for local analysis — prices, fundamentals, holdings, and more.
client.bulk.download(
dataset="prices",
universe="sp500",
out="./data",
)
Bulk export is included on the Developer plan and above.