Check Stocks

Check Stocks if available and get the stock details. This is used to check if the stock is available and get the stock details only StockIds. This will not buy the stock.

POST
/stock/check
/stock/check

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

game
Required
string

Game type to check

Value in: "FREE_FIRE" | "FREE_FIRE_SHELL" | "FREE_FIRE_SG" | "FREE_FIRE_ID"

combination
Required
array<number>

Array of combination numbers

quantitynumber

Quantity to check

curl -X POST "https://api.t4b.top/stock/check" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "game": "FREE_FIRE",
    "combination": [
      1,
      2,
      3
    ],
    "quantity": 1
  }'

Ok

{
  "data": {
    "available": true,
    "stock": [
      {
        "amount": 0,
        "stock_id": 0
      }
    ]
  },
  "statusCode": 200
}