Combination Breaker

Brake combination of order via amount. This route is used to calculate the combination of a order. Suppose a Diamond amount is 2000 but you cant directly buy 2000 Diamond, you can buy 1000 Diamond twice. so this will return [1000, 1000] as combination.

POST
/order/combination-breaker
/order/combination-breaker

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

amount
Required
string

game
Required
string

Value in: "FREE_FIRE" | "FREE_FIRE_SHELL" | "FREE_FIRE_SG" | "FREE_FIRE_ID"
curl -X POST "https://api.t4b.top/order/combination-breaker" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "amount": "string",
    "game": "FREE_FIRE"
  }'

Ok

{
  "data": {
    "combinations": [
      0
    ]
  },
  "statusCode": 200
}