API Documentation
Integrate our rapid gaming fulfillment engine directly into your software or website. Each request carries a flat service fee.
Shell Fulfillment API
v1.0 Stable
Cost: BDT 0.35/order
Base URL: https://dxabot.shop
Garena Level Up Pass / Evo Access Membership fulfillment.
1. Fetch Packages
List all available Shell packages with their IDs.
GET
/api/packages/shell.php
{
"status": "success",
"packages": [
{ "id": 30310, "name": "LITE" },
{ "id": 30311, "name": "EVO3" }
]
}
2. Create Order
Initiate a Garena Shell fulfillment request.
POST
/api/topup/shell.php
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | * | Your API key |
username | string | * | Garena username |
password | string | * | Garena password |
auth_code | string | * | OTP / Auth code |
package | int | * | Package ID |
Example Response
{
"status": "success",
"orderid": "SHELL-001",
"message": "Shell fulfilled successfully"
}