Identity Service
Frictionless onboarding with hardened security. Features native multi-factor authentication, KYC provider integration hooks, and localized player profile encryption.
- VERSION: AUTH_0.2
- ENCRYPTION: AES-256
Wallet Engine
The financial core. Engineered for high-frequency concurrency, supporting multi-currency (Fiat & Crypto) ledgers with nanosecond transactional integrity.
- VERSION: LEDGER_STABLE
- INTEGRATIONS: 50+ PSPs
Regulatory Vault
Automated compliance overhead. Real-time reporting feeds, dynamic limit management, and behavioral triggers to ensure Responsible Gaming strictures are met globally.
- VERSION: COMPLIANCE_V4
- JURISDICTIONS: UKGC, MGA, ON
GET /player/balance
POST /transaction/credit
WEBHOOK /event_listener
// Requesting unified balance across all integrated wallets
curl -X GET https://api.binkcore.net/v1/player/uuid_98765/balance \
-H "Authorization: Bearer [TOKEN]"
200 OK
{
"status": "success",
"timestamp": 1782245248,
"data": {
"player_id": "uuid_98765",
"currency": "EUR",
"balances": {
"cash": 1250.50,
"bonus": 100.00,
"locked": 0.00
}
}
}
// Processing a remote game server payout
curl -X POST https://api.binkcore.net/v1/transaction/credit \
-H "Content-Type: application/json" \
-d '{
"player_id": "uuid_98765",
"amount": 50.00,
"reference_id": "spin_84719",
"type": "WIN"
}'
201 CREATED
// Transaction successfully committed to ledger
// Example payload pushed to operator endpoint on player state change
{
"event_id": "evt_0019283",
"event_type": "RG_LIMIT_REACHED",
"created_at": "2026-03-23T21:07:28Z",
"payload": {
"player_id": "uuid_98765",
"limit_type": "DEPOSIT_DAILY",
"current_value": 500.00,
"threshold": 500.00
}
}