DINO TOPUP

Version 1.9.0

Documentation API DINO TOP UP

Welcome to the DINO TOP UP API integration documentation. This guide will help you understand how to integrate our services easily and efficiently.


Getting Started

To start the integration, there is one method available, which is via API using the POST method. You will need an API TOKEN and IP Whitelist to be able to access this service.

Authorization

- API TOKEN can be obtained from the Administrator DINO TOP UP to verify your identity.

- To add a SERVER IP to the whitelist, please contact the Administrator DINO TOP UP.


API

Endpoint
/api/v1/balance
Headers
Content-Type: application/json
Authorization: Bearer {API_TOKEN}
Request Body
No Request Body
Request
                        

curl -X POST "{BASE_URL}/api/v1/balance"

-H "Authorization: Bearer {API_TOKEN}"

-H "Content-Type: application/json"

Response
{
  "error": false,
  "code": 200,
  "message": "Success",
  "data": {
    "name": "DINO TOP UP",
    "email": "support@sohinfelixstore.com",
    "telp": "62xxxxxxxx",
    "membership": "Gold",
    "balance": 0
  }
}
Endpoint
/api/v1/product
Headers
Content-Type: application/json
Authorization: Bearer {API_TOKEN}
Request Body
No Request Body
Request
                        
                        curl -X POST "{BASE_URL}/api/v1/product" -H "Authorization: Bearer {API_TOKEN}" -H "Content-Type: application/json"
                        
                    
Response
{
  "error": false,
  "code": 200,
  "message": "Success",
  "data": [
    {
      "code": "mobile-legends",
      "name": "Mobile Legends",
      "is_active": true
    }
  ]
}
Endpoint
/api/v1/variant
Headers
Content-Type: application/json
Authorization: Bearer {API_TOKEN}
Request Body
{ "code": "string" }
Request
                        
                        curl -X POST "{BASE_URL}/api/v1/variant" -H "Authorization: Bearer {API_TOKEN}" -H "Content-Type: application/json"
                        
                    
Response
{
  "error": false,
  "code": 200,
  "message": "Success",
  "data": [
    {
      "id": 4090,
      "code": "MLBB_ID_5",
      "name": "5 (5+0) Diamonds",
      "is_active": "active",
      "price": 1389,
      "processDuration": "0"
    }
  ]
}
Endpoint
/api/v1/order
Headers
Content-Type: application/json
Authorization: Bearer {API_TOKEN}
Request Body
{ "code": "string", "referenceNumber": "string", "data": "string" }
Request
                        
                        curl -X POST "{BASE_URL}/api/v1/order" -H "Authorization: Bearer {API_TOKEN}" -H "Content-Type: application/json"
                        
                    
Response
{
  "error": false,
  "code": 200,
  "message": "Success",
  "data": {
    "invoiceNumber": "RZ-RAPIXXXXXXXXX"
  }
}
Endpoint
/api/v1/status-order/{invoice}
Headers
Content-Type: application/json
Authorization: Bearer {API_TOKEN}
Request Body
No Request Body
Request
                        
                        curl -X POST "{BASE_URL}/api/v1/status-order/{invoice}" -H "Authorization: Bearer {API_TOKEN}" -H "Content-Type: application/json"
                        
                    
Response
{
  "error": false,
  "code": 200,
  "message": "Success",
  "data": {
    "invoiceNumber": "RZ-RAPIXXXXXXXXX",
    "productName": "string",
    "userData": "string",
    "statusCode": "Success"
  }
}
DINO TOP UP.