Resources · API
A REST API that reads like a story.
Predictable URLs, idempotent writes, signed webhooks, and typed SDKs for Node, Python and Go. Built for engineers who appreciate a clean Stripe-style developer experience.
create-player.http
POST /v1/players
Authorization: Bearer sk_live_***
Content-Type: application/json
{
"email": "player@example.com",
"country": "BR",
"currency": "BRL",
"consent": ["marketing", "analytics"]
}
→ 201 Created
{
"id": "ply_01H...",
"wallets": [
{ "currency": "BRL", "balance": "0.00" }
],
"kyc_status": "pending"
}Why developers like it
Built like an API you'd actually want to integrate.
Typed SDKs
Node, Python, Go and TypeScript types. No more guessing payload shapes.
Sub-50ms latency
Edge endpoints in EU and LATAM. Geo-routed by default.
Strong auth
Scoped API keys, IP allowlists, mTLS for sensitive endpoints.
Signed webhooks
HMAC-signed events with replay protection. Idempotent by design.