💳 Purchase Skill Tokens

Power up your gaming experience with Skill Tokens!

STARTER
100
$0.99
$0.0099 per token
BASIC
500
$4.99
$0.0099 per token
STANDARD
1,200
$9.99
$0.0083 per token • Save 17%
PREMIUM
2,500
$19.99
$0.0080 per token • Save 20%
ELITE
5,500
$39.99
$0.0073 per token • Save 27%
MEGA
12,000
$79.99
$0.0067 per token • Save 33%

🎯 What are Skill Tokens?

Skill Tokens are the premium currency in SkillGames AI. Use them to enter tournaments, unlock premium features, and compete for bigger prizes!

💳 Payment Methods

We accept payments via Stripe and PayPal. All transactions are secured with industry-standard encryption and PCI DSS compliance.

💳
🔒

🔌 Payment API Documentation

For developers: Here are the payment integration endpoints available in the Wallet Service.

GET http://localhost:8004/payment/packages

Get all available token packages with pricing

POST http://localhost:8004/payment/stripe/create-intent

Create a Stripe PaymentIntent for purchasing tokens

POST http://localhost:8004/payment/stripe/webhook

Handle Stripe webhook events (payment success, failure, etc.)

GET http://localhost:8004/wallet/balance

Get current wallet balance (Skill Tokens + Prestige Points)

GET http://localhost:8004/wallet/transactions

Get transaction history with pagination

Example: Create Payment Intent

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"
}

🔗 Wallet Service Links

📚 API Documentation ❤️ Health Check 📦 View Packages (JSON)