Welcome
Use your key to list products, place orders, read balance, fetch history, and check a single order. JSON in,
JSON out; works from any language or curl.
What you can do
Order
POST /orders with a pid from the catalog. Same trxid = same order if you need to retry safely.
Status
Follow processing then completed or cancelled on the response. Poll with GET /orders/:id if you need to wait.
History
GET /history for recent rows; one order: GET /orders/:id.
Balance
GET /balance in USD. Top up in Telegram — not via the API.
Extra checks
PUBG / ML check and PUBG redeem have their own POST paths (see reference).
Base URL
https://api.gwultimatebot.com
Contact
Admin: @sonofutred (Telegram)
Code
Any HTTP client. See GET vs POST and the reference; errors in one place.
Getting started
Key
Send the key on every call:
X-API-Key: <key>orAuthorization: Bearer <key>
Turn the API on and create a key in Telegram (Profile), then you’re set.
Try it
curl -sS "https://api.gwultimatebot.com/services" \
-H "X-API-Key: YOUR_KEY"
Next: GET /products for line id (your pid on orders).
code values.