Developer Documentation
Institutional API
Direct access to ProtocolFrame's neural signal pipeline and sovereign market metrics.
Authentication
All requests require a valid X-API-Key header obtained via the institutional portal.
curl -H "X-API-Key: PF_LIVE_XXXXXX" https://ops.protocolframe.com/api/trading/signals
Available Endpoints
GET
/healthCheck API statusGET
/signalsCurrent BUY/SELL/HOLD signalsGET
/marketLive market data (RSI, MACD, BB)POST
/backtestRun strategy backtestGET
/strategiesList available strategiesGET
/tradesRecent trade historyGET
/performancePerformance metricsGET
/statusSystem statusGET
/pricingPricing tiersGET
/registerGet API key (redirects to Stripe)Response Schema
{
"market": {
"BTC": {
"price": 76300,
"rsi": 55.51,
"trend": "bullish",
"signal": "BUY"
},
"ETH": {
"price": 2245,
"rsi": 48.2,
"trend": "neutral",
"signal": "HOLD"
}
},
"agents": {
"nova": {
"confidence": 0.89,
"latency": "12ms"
},
"meridian": {
"confidence": 0.94,
"latency": "18ms"
}
},
"timestamp": "2026-05-18T06:32:00.571Z"
}