Skip running your own indexer. Read the validator set, the chain head, transfer history for any address, and the post-quantum anchor certificates that only this chain carries — all keyed, all reproducible against the public RPC.
/data/head — chain head with timestamp and base fee./data/validators — the live QBFT validator set, read from consensus./data/anchors — post-quantum anchor certificates, seal count and digest parsed per block. Nobody else can serve this./data/transfers?address= — token transfers from genesis, native transfers from launch, with both boundaries declared in the response so a partial answer never looks complete.curl -s "https://cloud.aere.network/v1/data/anchors?limit=1" \\
-H "x-api-key: ak2800.<you>.<secret>"
→ { "anchors": [ { "height": …, "falconSeals": 9,
"certificateDigest": "0x…" } ], … }
Register a webhook and the chain pushes to your servers: every new post-quantum anchor, activity on a watched address, your own billing events — each delivery signed with HMAC so you can prove it came from us. The SDK ships a verifyWebhook helper so you never hand-roll that check.
Part of Aere Cloud. Live status you compute in your own browser: /cloud-status.html.