Quantix AI Market Intelligence API
Quantix AI provides deterministic, explainable market state analysis for developers and institutions.
Important: This API provides analysis insights only. It does not provide investment advice, trading signals, or execution instructions. All decisions are the responsibility of the user.
1. Base URL & Authentication
Base URL: https://api.quantix.ai/v1
Use Bearer API Key in the Authorization
header.
Authorization: Bearer YOUR_API_KEY
2. Endpoint: Market State
GET/market-state
| Parameter | Type | Required | Example |
|---|---|---|---|
asset |
string | ✅ | EURUSD |
timeframe |
string | ✅ | H4 |
Example Response
{
"asset": "EURUSD",
"timeframe": "H4",
"state": "bullish",
"confidence": 0.78,
"dominance": { "bullish": 1.42, "bearish": 0.31 },
"evidence": ["Bullish break of structure confirmed", "Higher low respected", "No fake breakout detected"],
"updated_at": "2026-01-15T04:00:00Z",
"trace_id": "qtx-struct-9e21c"
}
3. Interpretation Guide (Educational)
- •
confidence > 0.75: Strong directional bias - •
confidence 0.45–0.75: Mixed or transitional - •
confidence < 0.45: Range or uncertain
4. Sandbox: Signal Engine Lab (Experimental)
SANDBOX
POST/lab/signal-engine/evaluate
{
"rules": {
"buy_if": "state == bullish AND confidence >= 0.75",
"sell_if": "state == bearish AND confidence >= 0.75"
},
"asset": "EURUSD",
"timeframe": "H4",
"historical_range": "30d"
}
5. Security & Trust
- • Deterministic output: Same input always returns same analysis.
- • trace_id: Each analysis includes a traceable ID for audit and debugging.
- • Zero execution: No trading or order execution layer exists in this API.