For Operators
Integrate i-gaming.co games in minutes. RESTful API with wallet callbacks, provably fair, and white-label branding.
Game status
Disponibilidade e configurações atuais do catálogo.

Gold Tiger
Slot96.0%
Alta
Até 10000x a aposta
Desktop, Tablet, Mobile

Money Money
Slot96.0%
Alta
Até 10000x a aposta
Desktop, Tablet, Mobile

Mega Blocks
Slot96.0% (target)
Alta
Até 10000x a aposta
Desktop, Tablet, Mobile

Tower Treasure
Slot95% — 96.5% (configurável)
Média / Alta
Até 10000x a aposta
Desktop, Tablet, Mobile

Bingo Royale
Slot95% — 96.5% (configurável)
Média / Alta
Até 5000x a aposta
Desktop, Tablet, Mobile

Tropical Slice
Slot95% — 96.5% (configurável)
Média / Alta
Até 10000x a aposta
Desktop, Tablet, Mobile

Boom Mines
Slot95% — 96.5% (configurável)
Média / Alta
Até 10000x a aposta
Desktop, Tablet, Mobile

Motoca do Grau
Crash96% — 97% (configurável)
Média / Alta
Até 1000x a aposta
Desktop, Tablet, Mobile

Piratas Mines
Slot96% — 97% (configurável)
Média / Alta
Até 10000x a aposta
Desktop, Tablet, Mobile

Mergulho ao Tesouro
Crash96% — 97% (configurável)
Média / Alta
Até 1000x a aposta
Desktop, Tablet, Mobile

India Rush
Crash96% — 97% (configurável)
Média / Alta (configurável)
Até 1000x a aposta
Desktop, Tablet, Mobile

Deuses da Terra
Slot95% — 96.5% (configurável)
Média / Alta (configurável)
Até 5000x a aposta
Desktop, Tablet, Mobile

Dragão Imperial
Slot95% — 96.5% (configurável)
Média / Alta (configurável)
Até 5000x a aposta
Desktop, Tablet, Mobile

Faraó Dourado
Slot95% — 96.5% (configurável)
Média / Alta (configurável)
Até 5000x a aposta
Desktop, Tablet, Mobile

Los Muertos
Slot95% — 96.5% (configurável)
Média / Alta (configurável)
Até 5000x a aposta
Desktop, Tablet, Mobile

Tropical Slot
Slot95% — 96.5% (configurável)
Média / Alta (configurável)
Até 5000x a aposta
Desktop, Tablet, Mobile

Favela Slot
Slot95% — 96.5% (configurável)
Média / Alta (configurável)
Até 5000x a aposta
Desktop, Tablet, Mobile

Caramelo da Sorte
Slot95% — 96.5% (configurável)
Baixa / Média (configurável)
Até 2500x a aposta
Desktop, Tablet, Mobile

Capivara Milionária
Slot95% — 96.5% (configurável)
Média / Alta (configurável)
Até 5000x a aposta
Desktop, Tablet, Mobile

Boteco da Sorte
Slot95% — 96.5% (configurável)
Média / Alta (configurável)
Até 5000x a aposta
Desktop, Tablet, Mobile
From registration to go-live
Três fluxos cobrem todo o ciclo de integração técnica do operador.
- 1Cadastro do operador no painel
- 2Geração de token demo
- 3Pré-flight game-config
- 4Embed iframe homologado
- 5Go-live com token de produção
- 1Definir scope e allowed_domains
- 2Escolher environment (demo/prod)
- 3Definir expires_in_seconds
- 4Rotacionar antes da expiração
- 5Revogar via /operator → Tokens
- 1Validar RTP efetivo
- 2Configurar min_bet, max_bet e max_payout
- 3Testar com ?demo=1
- 4Ativar produção
- 5Monitorar eventos postMessage
Authentication
Todas as chamadas à API pública requerem um token de integração no header Authorization.
Mandatory header
Authorization: Bearer <token>- Token emitido no painel /admin
- Prefixo
mt_para tokens de operador - CORS habilitado para domínios autorizados
- Nunca exponha o token no frontend do jogador
Verify token
curl -X GET \
https://i-gaming.co/api/public/v1/auth/verify \
-H "Authorization: Bearer mt_xxxx"Your permissions
Verificação automática do seu token e permissões por jogo do operador conectado.
Permissions per game
Verify Bearer token
Cole o token (sem o prefixo Bearer). A validação acontece automaticamente.
Endpoints
Base URL: https://i-gaming.co
/api/public/v1/auth/verifyValida o token e retorna escopo e operador vinculado./api/public/v1/auth/introspectFull token detail: scope, permissions, allowed_domains and effective CSP frame-ancestors./api/public/v1/global-settingsReturns the system's global settings (default RTP, limits, etc.)./api/public/v1/operatorOperator data, custom settings and current liquidity./api/public/v1/operatorUpdates operator data and/or settings (linked operator only)./api/public/v1/round/currentLatest active or crashed round — used by crash games to sync state./api/public/v1/stats?days=7Betting statistics for the period (GGR, total bets, payout)./api/public/v1/tokensLists the operator's API tokens./api/public/v1/tokensIssues a new integration token./api/public/v1/tokens?id=...Revoga um token existente.Flow example
Do cadastro ao primeiro spin — o caminho típico de integração.
Crie conta de operador
Faça login. Operadores são criados pelo admin no painel.
Gere token de API
No /admin, crie um operador e emita tokens com domínios autorizados.
Configure callbacks
Implemente os endpoints de bet / win / rollback no seu backend de wallet.
Embeda o jogo
Monte a URL do iframe com token, player_id, lang, currency e mode.
Bet callback example
POST /wallet/callback/bet
Content-Type: application/json
X-Operator-Token: <seu-token>
{
"transaction_id": "txn_abc123",
"round_id": "round_xyz789",
"player_id": "player_001",
"game_slug": "mergulho-ao-tesouro",
"amount": 10.00,
"currency": "BRL",
"type": "bet"
}Resposta esperada: { "status": "ok", "balance": 1234.56 }
Embed via iframe
Carregue o jogo diretamente no site do operador com um iframe parametrizado.
URL parameters
operatorOperator ID (required)tokenPlayer session token (required)player_idUnique player identifierlangIdioma: pt, en, es (default: pt)currencyMoeda: BRL, USD, EUR (default: BRL)modedemo | real (default: demo)
Example code
<iframe
src="https://i-gaming.co/j/mergulho-ao-tesouro?operator=demo&token=demo-token&player=guest&lang=pt¤cy=BRL&mode=demo"
width="100%"
height="600"
frameborder="0"
allowfullscreen
style="border-radius: 12px;"
></iframe>Security headers & allowlist
Servimos todos os jogos (i-gaming.co e subdomínios) com headers obrigatórios. O embed só é permitido em domínios que você cadastrar em allowed_domains do token.
Headers always sent
Strict-Transport-Securitymax-age=63072000; includeSubDomains; preloadX-Content-Type-OptionsnosniffReferrer-Policystrict-origin-when-cross-originPermissions-Policygeolocation=(), microphone=(), camera=(), payment=()Content-Security-Policyframe-ancestors 'self' https://*.i-gaming.co <seus domínios>
Em rotas /games/* o X-Frame-Options é omitido (não suporta múltiplas origens) — a proteção fica no CSP frame-ancestors.
How to register your domains
- Access the operator panel → Tokens.
- In Allowed domains, adicione os hosts (ex.:
casa.com) — subdomainshttpsare automatically accepted. - The CSP
frame-ancestorsis generated per request from the token (headerAuthorizationor querystring?token=). - Domains outside the whitelist have the iframe blocked by the browser.
# Verifique seus headers em produção
curl -sI "https://i-gaming.co/games/treasure-dive?token=mt_xxx" \
| grep -iE "strict-transport|content-security|x-content|referrer|permissions"Real-time effective CSP
Paste your token to see exactly frame-ancestors what will be sent by the server.
Regulatory requirements
Checklist mínimo para operar nos jogos integrados. Aplicável a todas as jurisdições; regras locais podem ser mais restritivas.
The operator must present a valid gaming licence in the target jurisdiction and full KYC of the ultimate beneficial owner.
Documented anti-money-laundering policy, per-player limits and monitoring of unusual patterns.
Deposit limits, self-exclusion and mandatory responsible-gaming messages in the front end.
LGPD/GDPR: treat user_id as a pseudonym; never put PII in the token.
Country/IP blocking per licence. allowed_domains restricts the iframe origin.
Immutable logs of bets, rounds and payouts, available for 5 years through the reporting API.
Moedas e países suportados
Lista completa e oficial das moedas (ISO 4217) e países (ISO 3166-1 alpha-2) aceitos no cadastro de operador, na wallet HMAC, nos limites de aposta e nos mirrors. Cada país já traz a moeda e o fuso horário padrão — ambos ajustáveis no cadastro.
78 de 78 moedas
Invoices and payments
Acompanhe o consumo mensal por GGR, baixe faturas e gerencie o método de pagamento padrão.
| Invoice | Period | Due date | Value | Status | |
|---|---|---|---|---|---|
| INV-2026-0612 | Maio/2026 | 10/06/2026 | R$ 48.230,00 | Pago | |
| INV-2026-0511 | Abril/2026 | 10/05/2026 | R$ 41.905,00 | Pago | |
| INV-2026-0410 | Março/2026 | 10/04/2026 | R$ 37.120,00 | Pago | |
| INV-2026-0711 | Junho/2026 | 10/07/2026 | R$ 52.480,00 | Em aberto |
Pagamentos processados via Stripe. Valores em BRL com retenção tributária aplicada conforme jurisdição do operador.
Resources for the operator
Full public API reference, schemas and examples.
Ready-made iframe embeds and token-generation snippets.
1-hour SLA for operators in production. Dedicated Slack channel.
Public uptime page for the integrated endpoints and games.
Pronto para integrar?
Nosso time de integração está disponível 24/7 para ajudar com a implementação técnica.