Skip to main content
Version: 1.0.0

Operator Wallet API

API contract that operators must implement. The platform calls these endpoints for authentication, bet placement (withdrawals), settlement (deposits), and rollbacks.

Authentication

HMAC-SHA256 hex signature of the raw request body.

  1. Take the shared secret provided during onboarding.
  2. Compute: signature = hex(HMAC-SHA256(secret, request_body))
  3. Send in the X-Payload-Signature header.

See the Wallet Endpoints guide for code examples.

Security Scheme Type:

apiKey

Header parameter name:

X-Payload-Signature