Cryptelix Analytics Platform — Technical Standards
Because Cryptelix touches your exchange API keys, we treat security as infrastructure — not an afterthought. Here's how the system is built.
Your API keys and secret tokens are never written to disk in readable form. The moment a key arrives at our servers, it is encrypted and stored. Here's the flow:
AES-256 — the same standard used by banks and governments.TLS 1.3 / HTTPS. There is no fallback to older protocols.JWT tokens with short lifetimes. Sessions expire automatically if anything about the context changes.Read-only access isn't just a policy — it's a hard technical constraint built into Binance's own engine. Even in the worst-case scenario, this matters a great deal:
Even if an attacker gained complete access to our servers, they could not move funds, place a trade, or withdraw anything. Binance's API will refuse any write or withdrawal command coming from a read-only key — full stop. No amount of server access changes that.
You remain responsible for verifying that trading and withdrawal permissions are unchecked when you generate your key inside your Binance account. That's the one step on your side of the line.