📖 Mobile Legends API Documentation
Top-Up API 🌐
Method: POST
URL: https://reseller.vibolshop.com/reseller.php
Parameters:
Parameter | Type | Description | Required |
---|---|---|---|
userid |
String | The Mobile Legends user ID. | Yes |
zoneid |
String | The zone ID of the user. | Yes |
package |
String | The package ID for the top-up. | Yes |
token |
String | A security token for authenticating the request. | Yes |
game_code |
String | Product Code | Yes |
Example Request:
{
"userid": "1497223170",
"zoneid": "11771",
"package": "86",
"token": "Your API KEY"
"game_code": "MLBB"
}
Example Python Code:
import requests
import json
url = "https://reseller.vibolshop.com/reseller.php"
payload = json.dumps({
"userid": "1497223170",
"zoneid": "11771",
"package": "86",
"token": "Your API KEY"
"game_code": "MLBB"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.post(url, headers=headers, data=payload)
print(response.text)
Example Response:
{
"status": "success",
"message": "Top-up successful",
"transaction_id": "TXN1234567890",
"balance": 500.75
}
Check Balance API 📝
Method: POST
URL: https://reseller.vibolshop.com/check-balance.php
Parameters:
Parameter | Type | Description | Required |
---|---|---|---|
token |
String | A security token for authenticating the request. | Yes |
Example Python Code:
import requests
import json
url = "https://reseller.vibolshop.com/check-balance.php"
payload = json.dumps({
"token": "Your API KEY"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.post(url, headers=headers, data=payload)
print(response.text)
Example Response:
{
"status": "success",
"balance": "8.80"
}
Check Mobile Legends Diamond Price API 📩
Method: POST
URL: https://reseller.vibolshop.com/item_price.php
Parameters:
Parameter | Type | Description | Required |
---|---|---|---|
token |
String | A security token for authenticating the request. | Yes |
Example Python Code:
import requests
import json
url = "https://reseller.vibolshop.com/item_price.php"
payload = json.dumps({
"token": "Your API KEY"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.post(url, headers=headers, data=payload)
print(response.text)
Example Response:
{
"status": "success",
"items": [
{
"item": "86",
"price": "1.01$"
},
{
"item": "172",
"price": "2.05$"
},
{
"item": "257",
"price": "3.07$"
}
]
}
Register for Partner API Key 🔑
To access our API, you need to register as a partner and obtain an API key. This key will allow you to make authorized requests to the system.
Fill out the necessary details to request your API key and start using our services.