Prepaid
Place Order
[POST] https://mail.fmpedia.id/api/prepaid
| Parameter | Type | Note | Req. |
|---|---|---|---|
| key | string |
fill with your API Key. | Yes |
| sign | string |
fill with combined User ID and API Key encrypted with md5. | Yes |
| type | string |
fill with order to place order. | Yes |
| service | string |
fill with Service ID that you want to order. | Yes |
| data_no | string |
fill with Phone Number or Other Data. | Yes |
Example Response
{
"code": 200,
"data": {
"data": [
"your destination number"
],
"note": "transaction note",
"price": 10000,
"ref_id": "some1d",
"status": "waiting",
"product": {
"code": "product_id",
"type": "product_type",
"service": "product_name"
},
"voucher": "voucher_code"
},
"status": true,
"message": "Thank you for purchasing the product, please wait for the transaction to be processed."
}
Check Transaction
[POST] https://mail.fmpedia.id/api/prepaid
| Parameter | Type | Note | Req. |
|---|---|---|---|
| key | string |
fill with your API Key. | Yes |
| sign | string |
fill with combined User ID and API Key encrypted with md5. | Yes |
| type | string |
fill with status to place order. | Yes |
| ref_id | string |
fill with Transaction Reference ID. | No |
| limit | integer |
fill with 1 - 15. | No |
Example Response
{
"code": 200,
"data": [
{
"data": [
"your destination number"
],
"note": "transaction note",
"price": 10000,
"ref_id": "some1d",
"status": "waiting",
"product": {
"code": "product_id",
"type": "product_type",
"service": "product_name"
},
"voucher": "voucher_code",
"created_at": 1788832029,
"updated_at": 1788832029
}
],
"status": true,
"message": "Success."
}
Get Service
[POST] https://mail.fmpedia.id/api/prepaid
| Parameter | Type | Note | Req. |
|---|---|---|---|
| key | string |
fill with your API Key. | Yes |
| sign | string |
fill with combined User ID and API Key encrypted with md5. | Yes |
| type | string |
fill with service to place order. | Yes |
Example Response
{
"code": 200,
"data": [
{
"category": {
"type": "paket-telepon",
"main": "XL",
"sub": "Anynet"
},
"multi": "1",
"name": "AnyNet 300 Menit 90 Hari",
"note": "AnyNet 300Mnt, 90hr",
"code": "XTLP30090",
"price": {
"list": {
"basic": 95255,
"premium": 94930,
"special": 94785
},
"current": 95255
},
"cutoff": {
"start": "23:45",
"end": "00:15"
},
"status": "ready",
"updated_at": 1788726737
},
{
"category": {
"type": "voucher-game",
"main": "MOBILE LEGENDS",
"sub": "Global"
},
"multi": "1",
"name": "Mobile Legends First Top Up 250+25 Diamonds (Global)",
"note": "-",
"code": "MLTU25G",
"price": {
"list": {
"basic": 64761,
"premium": 64436,
"special": 64291
},
"current": 64761
},
"cutoff": {
"start": "23:00",
"end": "23:00"
},
"status": "ready",
"updated_at": 1788768046
}
],
"status": true,
"message": "Success."
}