Core API Reference
Interact with the Qlorix blockchain programmatically. Use our public REST API and JSON-RPC endpoints to manage transactions, query QLNS names, monitor validator data, governance proposals, and ledger state in real-time.
bolt High-performance REST API
/v2/account/{address}/balance
Get Account Balance
Returns the current liquid and staked balance for a specific wallet address. This endpoint queries the state of the last confirmed block.
Parameters
The unique public key address of the account.
Unit of measurement (e.g., 'qlorix', 'uqc').
{
"status": "success",
"data": {
"address": "qc1x9...4v",
"liquid_balance": "1450.25",
"staked_balance": "5000.00",
"currency": "QLORIX",
"last_updated_block": 8923410,
"metadata": {
"nonce": 42,
"is_validator": false
}
}
}
/v2/transactions/broadcast
Broadcast Transaction
Submit a signed transaction to the mempool for validation and inclusion in the next block. Requires a pre-signed payload.
Request body
Requires an object containing a raw_tx hex string and the signature produced by the SDK.
Error codes
- 400 Insufficient funds for gas
- 401 Invalid signature
- 429 Rate limit exceeded
{
"raw_tx": "0x4a12b...f92c",
"signature": "sig_v1_928...43",
"broadcast_type": "async",
"gas_limit": 21000
}
Developer experience
Production-ready tooling and limits designed for builders shipping on Qlorix.
Real-time webhooks
Subscribe to on-chain events and receive instant notifications. Monitor large transactions, validator updates, or smart contract emissions with zero polling.
Rate limiting
Our global edge network targets 99.99% uptime with 5,000 requests per second for institutional partners.