Last updated2026-07-02Page versionpre-launch
Developers
Build on H33.
Every endpoint below is honest about status. Live means production-quality behind Auth1. Staged means the adapter is wired but returns unavailable. Coming soon means the endpoint is planned and not yet shipped.
API surfaces
| Endpoint | Status | Notes |
|---|---|---|
| Auth1 · identity + session | live | Passwordless login, biometric attestation, session governance, revocation. |
| /v1/wallet/init | live | Self-custody wallet provisioning on first login. |
| /v1/wallet/balance | live | Real-time balance across chains · behind Auth1. |
| /v1/pay | live | Payment authorization + execution · signed authority chain. |
| /v1/me | live | Identity + policy resolution for the calling session. |
| Document attestation | live | Version notarization + Dilithium signature to Solana. |
| Activity + audit trail | live | Every governed action emits a signed receipt. |
| /v1/request | staged | Payment requests adapter · returns honest unavailable. |
| /v1/rewards | staged | Referral / rewards adapter · returns honest unavailable. |
| Public /verify/<hash>/ | coming soon | Verify any Vault-emitted receipt without an account. |
| Public /replay/<hash>/ | coming soon | Reconstruct any historical decision from its hash. |
| docs.h33.you | coming soon | Full developer documentation · endpoints run today. |
Example
Fetch the calling session's identity
$ curl -s https://api.h33.you/v1/me \
-H "Authorization: Bearer $H33_SESSION"
{
"session_id": "sess_01H8...",
"identity": "id_01H8...",
"device": "dev_ChromeIphone_...",
"policy_hash": "p_01H8...",
"issued_at": 1751457600,
"expires_at": 1751461200
}
Full endpoint documentation ships at docs.h33.you · the endpoints themselves are already production.