Glavior Public API - Coming Soon (Roadmap Preview)
A roadmap preview of the planned Glavior Public API - read-only access to resolved signals. The endpoint is not yet live. This article previews the contract; the live URL, keys, and rate limits will be published at launch.
Public API - Coming Soon
The Glavior Public API is **not yet live**. This article is a roadmap preview of the read-only signals endpoint we plan to ship publicly. When the API launches, the canonical URL, authentication scheme, and rate limits will be published here and on the Status page.
[INSIGHT] We are intentionally publishing the API shape before the endpoint goes live. Anyone building against Glavior should know what to expect - and what we will never expose (PII, internal scoring, or active analyses gated to paying tiers).
What The API Will Expose
- Resolved signals only - every analysis that closed on TP or SL.
- Per-signal: symbol, direction, entry, take-profit, stop-loss, close price, outcome, R-multiple, regime, confidence band, emitted-at, closed-at.
- The same outcome rows that power the public Track Record page. There will not be a parallel "marketing" feed.
What The API Will NOT Expose
- Active (unresolved) analyses - those remain gated to subscribers.
- Any PII, wallet identifiers, or internal factor scores.
- Execution intents, paper-trading endpoints, or write actions in v1.
Planned Authentication
- **Anonymous** - low rate-limit, no key required, for spot-checks.
- **API key** - higher rate-limit, minted from your dashboard at launch. Keys will be SHA-256 hashed at rest; the raw key is shown once.
Planned Response Shape
```json { "api_version": "v1", "generated_at": "<ISO-8601>", "count": 10, "signals": [ { "id": "<uuid>", "symbol": "BTCUSDT", "direction": "LONG", "entry": 64210.5, "take_profit": 65880.0, "stop_loss": 63600.0, "close_price": 65880.0, "outcome": "WIN", "pnl_percent": 2.6, "rr": 2.74, "regime": "TRENDING_UP", "confidence": 88, "emitted_at": "<ISO-8601>", "closed_at": "<ISO-8601>" } ] } ```
Roadmap
- **v1** - Read-only resolved signals (the contract above).
- **v1.1** - Active signals + live engine state (subscriber-scoped).
- **v2** - Webhooks, execution intents, paper-trading endpoints.
[INSIGHT] Until the endpoint is published, the Track Record page is the canonical source of truth. Every number there is computed from the same ledger the API will eventually serve.
The Bottom Line
A public, verifiable API is the cheapest trust signal a serious platform can ship. We are taking the time to ship it correctly - versioned, rate-limited, and aligned with the ledger - instead of rushing a URL that we would have to migrate later.