Authentication Models
SlaunchX uses different authentication models for different chains.
Web Chain
The WEB chain typically uses:
- portal entrypoint context
- Secure Channel for sensitive entry operations
- JWT for authenticated requests
X-Client-Hashfor session fingerprint binding
API Chain
The API chain typically uses:
X-Api-KeyX-SignatureX-TimestampX-Nonce
Do Not Mix Them
These models are not interchangeable:
- JWT does not make a
WEBendpoint API-key accessible - HMAC does not make a
WEBsession endpoint callable - Secure Channel is not a general replacement for API signing
What To Check Before Calling
- chain type
- required credentials
- required headers
- whether Secure Channel is required
- whether portal and fingerprint context must already exist