API v2
API Documentation
Myanmar Boosting Website API ကို သုံးပြီး သင့်ရဲ့ panel/bot/website ထဲကနေ တိုက်ရိုက် order တင်၊ status စစ်၊ refill တောင်းနိုင်ပါတယ်။
HTTP Method
POST
Response Format
JSON
Rate Limit
60 / min
API Endpoint
https://myanmarboosting.site/api/v2 API Key
Dashboard → Profile → API Key မှ သင့်ရဲ့ unique key ကို ရယူပါ။
Endpoints
Service List
ရရှိနိုင်သော services အားလုံးကို ပြန်ပေးသည်။
Parameters
| key | Your API Key |
| action | services |
Response
[
{
"service": 1,
"name": "TikTok Followers",
"type": "Default",
"category": "TikTok",
"rate": "1500",
"min": "100",
"max": "100000"
}
]Add Order
Order အသစ်တင်ရန်။
Parameters
| key | Your API Key |
| action | add |
| service | Service ID |
| link | https://... |
| quantity | 1000 |
Response
{
"order": 23501
}Order Status
Order တစ်ခုရဲ့ status စစ်ရန်။
Parameters
| key | Your API Key |
| action | status |
| order | 23501 |
Response
{
"charge": "1.50",
"start_count": "1200",
"status": "In progress",
"remains": "200",
"currency": "MMK"
}Refill
Drop ဖြစ်တဲ့ order အတွက် refill တောင်းရန်။
Parameters
| key | Your API Key |
| action | refill |
| order | 23501 |
Response
{
"refill": "1"
}User Balance
လက်ရှိ account balance ကို စစ်ရန်။
Parameters
| key | Your API Key |
| action | balance |
Response
{
"balance": "125000.00",
"currency": "MMK"
}cURL ဥပမာ
curl -X POST https://myanmarboosting.site/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=add" \ -d "service=1" \ -d "link=https://tiktok.com/@username" \ -d "quantity=1000"