โšก PUBG Mobile UC top-up automation

The Midasbuy API
for PUBG Mobile top-ups

Redeem UC codes onto any player, look up players, and check code status โ€” over a simple, fast REST API. One X-Api-Key header and you're live.

Everything you need to automate Midasbuy

Four endpoints cover the full redeem workflow. All JSON, all authenticated with your API key.

๐ŸŽฏ

Activate a code

POST /api/v1/pubg/activate

Redeem a single UC code onto a player ID and get back the activation details.

๐Ÿ“ฆ

Bulk activate

POST /api/v1/pubg/bulkActivate

Redeem up to 5 codes onto the same player in one request, with a per-code result list.

๐Ÿ”Ž

Look up a player

POST /api/v1/pubg/getPlayer

Resolve a player by ID and get their in-game name โ€” validate before you redeem.

โœ…

Check a code

POST /api/v1/pubg/checkCode

See whether a code is still valid, already used, or expired โ€” plus its UC amount.

Start in one request

Authenticate with the X-Api-Key header and POST JSON. That's it.

activate.sh
# Redeem a UC code onto a player
curl -X POST https://midasbuy-api.com/api/v1/pubg/activate \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"player_id": 555555555, "uc_code": "rX7rASS72a25qdVcg0"}'

Get access

API keys are issued through our Telegram manager. Subscriptions are managed there too.

STEP 1

Message the manager

Open the Telegram bot and request access to the API.

STEP 2

Get your API key

You'll receive a personal X-Api-Key tied to your account.

STEP 3

Start integrating

Follow the documentation and make your first request.