Skip to main content

๐Ÿงช Live API Testing

Test WASMOU API endpoints directly from your browser. No code required!

Quick Testโ€‹

Enter your API key and test any endpoint:

Testing Tipsโ€‹

  1. Get your API key from https://myapp.wasmou.net/api-settings
  2. Start with GET requests - Try /api/account or /api/balance first
  3. For POST requests - Enter valid JSON in the request body field
  4. Check the response - Green border = success, Red border = error

Available Endpoints for Testingโ€‹

Account & Balanceโ€‹

  • GET /api/account - Get account information
  • GET /api/balance - Get current balance

Free Fireโ€‹

  • GET /api/freefire/plans - Get available plans
  • POST /api/freefire/order - Place order (requires player_id and plan_id)

PUBG Mobileโ€‹

  • GET /api/pubg/products - Get available products
  • POST /api/pubg/order - Place order (requires player_id and product_id)

Flexy (Mobile Top-Up)โ€‹

  • GET /api/flexy/plans - Get top-up plans
  • POST /api/flexy/order - Place order (requires MSSIDN and plan_code)

Ordersโ€‹

  • GET /api/orders - Get order history

Example Request Bodiesโ€‹

Free Fire Orderโ€‹

{
"player_id": "1234567890",
"plan_id": "FF100"
}

PUBG Orderโ€‹

{
"player_id": "1234567890",
"product_id": 12345
}

Flexy Orderโ€‹

{
"MSSIDN": "0661234567",
"plan_code": "FIXED_100_Mobilis"
}

Security Noteโ€‹

โš ๏ธ Never share your API key publicly! This testing tool runs in your browser and your API key is only sent directly to the WASMOU gateway.


Need help? Check the Error Handling guide or contact support.