Power up your gaming experience with Skill Tokens!
Skill Tokens are the premium currency in SkillGames AI. Use them to enter tournaments, unlock premium features, and compete for bigger prizes!
We accept payments via Stripe and PayPal. All transactions are secured with industry-standard encryption and PCI DSS compliance.
For developers: Here are the payment integration endpoints available in the Wallet Service.
Get all available token packages with pricing
Create a Stripe PaymentIntent for purchasing tokens
Handle Stripe webhook events (payment success, failure, etc.)
Get current wallet balance (Skill Tokens + Prestige Points)
Get transaction history with pagination
POST /payment/stripe/create-intent
Authorization: Bearer {jwt_token}
Content-Type: application/json
{
"package_name": "STANDARD"
}
Response:
{
"payment_intent_id": "pi_xxxxx",
"client_secret": "pi_xxxxx_secret_xxxxx",
"amount": 9.99,
"tokens": 1200,
"status": "requires_payment_method"
}