Developer Portal

Developer API Docs

Integrate institutional-grade quantitative calculations, live directional forecasts, and portfolio analytics directly into your custom software stacks.

API Desks

Endpoints

GET/v1/models/signals

Retrieve real-time directional quant signals generated by the LSTM and XGBoost neural model cores.

Query Parameters

ParameterTypeRequiredDescription
symbolstringYesStock or asset ticker (e.g., TSLA, NVDA)
convictionfloatNoFilter results by minimum conviction score (0.0 to 1.0)

HTTP Request

curl -X GET "https://api.rautrex.com/v1/models/signals?symbol=TSLA" \
  -H "Authorization: Bearer YOUR_API_KEY"

JSON Response

{
  "status": "success",
  "data": {
    "symbol": "TSLA",
    "timestamp": "2026-05-26T11:42:00Z",
    "signal": "BULLISH",
    "conviction_score": 0.87,
    "fair_value_projection": 240.00,
    "risk_index": "MEDIUM",
    "action_recommended": "ACCUMULATE"
  }
}