Programmatic access to Phase Model structural regime data.
https://api.phasemodel.xyz/v1
Authenticated requests require an API key in the X-API-Key header. Generate your key in account settings.
X-API-Key: your_api_key
/core/phase/summaryPublicReturns the current regime and confidence score for a given asset. No authentication required.
asset*Asset symbol. Supported: BTC, ETH, SOL, SP500, GOLD, SILVER, OIL, NYSE, SSE, STOXX, B3curl "https://api.phasemodel.xyz/v1/core/phase/summary?asset=BTC"
/core/phase/statesPublicReturns the list of available assets and their current structural phase.
curl "https://api.phasemodel.xyz/v1/core/phase/states"
/core/phase/currentInstitutionalReturns full current phase data including pillar breakdown for a given asset.
asset*Asset symbol. Supported: BTC, ETH, SOL, SP500, GOLD, SILVER, OIL, NYSE, SSE, STOXX, B3curl "https://api.phasemodel.xyz/v1/core/phase/current?asset=BTC" \ -H "X-API-Key: your_api_key"
/core/phase/historyInstitutionalReturns the historical structural phases for a given asset within a date range.
asset*Asset symbol. Supported: BTC, ETH, SOL, SP500, GOLD, SILVER, OIL, NYSE, SSE, STOXX, B3start*Start date in YYYY-MM-DD format.end*End date in YYYY-MM-DD format.curl "https://api.phasemodel.xyz/v1/core/phase/history?asset=BTC&start=2024-01-01&end=2024-12-31" \ -H "X-API-Key: your_api_key"
/core/mcp/sseInstitutionalReal-time Server-Sent Events stream for Model Context Protocol integration with AI agents.
curl "https://api.phasemodel.xyz/v1/core/mcp/sse" \ -H "X-API-Key: your_api_key" \ -H "Accept: text/event-stream"
/core/mcp/messageInstitutionalSend a message to the Phase Model MCP server and receive a structured response.
curl -X POST "https://api.phasemodel.xyz/v1/core/mcp/message" \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/call","id":1}'Connect AI agents directly to Phase Model regime data via the Model Context Protocol. Query current regimes, run historical analysis, and build autonomous workflows on top of structural signals — all through a standard MCP interface.
{
"mcpServers": {
"phase-model": {
"url": "https://api.phasemodel.xyz/v1/core/mcp/sse",
"headers": {
"X-API-Key": "your_api_key"
}
}
}
}https://api.phasemodel.xyz/v1/core/mcp/sse?api_key=your_api_key
get_phase_model_summaryInstitutionalget_phase_model_statesInstitutionalget_phase_model_currentInstitutionalget_phase_model_historyInstitutional