1. API Reference
Chizverse
  • ChizVerse Developer Docs
    • Getting Started
    • API Reference
      • Overview
      • Chizmis Authentication
        • Exchange for a ChizVerse Bearer
        • Hosted Client Login
        • Hosted Client Registration
        • Logout
        • Get Current Account
        • Validate Client Application
        • Login with Existing Session
        • Verify Session Key
      • Activity Tracking
        • Create Launch
        • Create Tracked Session
        • Get Session Checkpoint
        • Get Saved Player Progress
        • Ingest Event Batch
        • Get Game Leaderboard
      • ChizPay Wallet & Transactions
        • Get Wallet by Account ID
        • Transfer Wallet Balance
        • Get Wallet Transaction History
        • Debit Wallet
        • Credit Wallet
        • Get Game Ledger
    • SDK
    • Schemas
      • ExchangeForAChizVerseBearerResponse
      • ExchangeForAChizVerseBearerRequest
      • LogoutResponse
      • LogoutRequest
      • GetCurrentAccountResponse
      • ValidateClientApplicationResponse
      • LoginWithExistingSessionResponse
      • LoginWithExistingSessionRequest
      • VerifySessionKeyResponse
      • CreateLaunchResponse
      • CreateLaunchRequest
      • CreateTrackedSessionResponse
      • CreateTrackedSessionRequest
      • GetSessionCheckpointResponse
      • GetSavedPlayerProgressResponse
      • IngestEventBatchResponse
      • IngestEventBatchRequest
      • GetGameLeaderboardResponse
      • GetWalletByAccountIDResponse
      • TransferWalletBalanceResponse
      • TransferWalletBalanceRequest
      • GetWalletTransactionHistoryResponse
      • DebitWalletResponse
      • DebitWalletRequest
      • CreditWalletResponse
      • CreditWalletRequest
      • GetGameLedgerResponse
  1. API Reference

Overview

API Groups#

GroupPurpose
Chizmis AuthenticationClient validation, hosted sign-in/sign-up, callback token exchange, saved account lookup, session verification, and logout.
Activity TrackingGame launch creation, tracked sessions, gameplay event ingestion, event mapping, and session lifecycle.
ChizPay Wallet & TransactionsCentralized wallet lookup, wallet transfers, game debit/credit transactions, and game ledger retrieval.

Base URLs#

API GroupBase URL
Chizmis Hosted Authenticationhttps://access.chizmis.com
Chizmis Authenticationhttps://api.chizmis.com
ChizVerse Core Authhttps://api-chizverse.beespokedev.com
Activity Trackinghttps://api-chizverse.beespokedev.com
Leaderboardshttps://api-chizverse.beespokedev.com
ChizPay Wallet & Transactionshttps://api.chizmis.com

API-Only Integration Flow#

Use this flow when integrating directly with HTTP endpoints without @ccci/chizverse-sdk. Your integration must manage token storage, session keys, event ordering, batching, heartbeat timing, retries, and final session events.
API-only integration sequence for authentication, Game Manager activity tracking, and ChizPay wallet transactions

Credential Map#

CredentialObtained fromUsed for
Chizmis token (t)Hosted Chizmis callbackChizmis account endpoints and ChizPay authorization header
ChizVerse bearerPOST /core/public/auth/chizmisGame Manager Create Launch authorization header
launchTokenGame Manager Create LaunchGame Manager Create Tracked Session request body
sessionKeyGame Manager Create Tracked Sessionx-session-key for checkpoints, saved progress, and event batches
sessionIdGame Manager Create Tracked SessionEvent ownership and ChizPay gameSession linkage

Common Authentication#

Protected endpoints do not all use the same credential:
Chizmis and ChizPay: authorization: Bearer <chizmis-token>
Game Manager launch creation: authorization: Bearer <chizverse-token>
Game Manager session activity: x-session-key: <session-key>
API paths include their service prefix, for example /access/v1.0/..., /game-manager/v1.0/..., /leaderboard/v1.0/..., and /chizpay/v1.0/....
ChizPay write requests use replay-protected request integrity fields in the body:
nonce: unique per request
timestamp: epoch milliseconds
signature: HMAC or server-issued request signature over the canonical request payload
Modified at 2026-07-30 06:57:16
Previous
Getting Started
Next
Chizmis Authentication
Built with