Midasbuy-style · PUBG Mobile UC · HTTP REST API

Midasbuy API for PUBG Mobile UC — redeem codes, check vouchers & automate your shop

Spark UC Bot HTTP API connects to the same Midas redemption flow used for Midasbuy / PUBG Mobile UC voucher codes. Redeem to Player ID, batch-check codes, lookup nicknames, read quota & stock — fully documented at api.pubgredeemerbot.com.

Everything the Midasbuy API workflow needs

Same capabilities as the Telegram bot — exposed as REST endpoints with job polling, rate limits, and copy-paste examples.

UC redeem (manual)

POST /v1/jobs/manual-redeem — activate Midasbuy / PUBG UC codes to a Player ID. Async job queue; poll GET /v1/jobs/{id}.

Check voucher / code

POST /v1/jobs/check-code — verify if a Midasbuy redemption code is valid, used, or expired before you sell or redeem (up to 10 codes per job).

Player lookup

GET /v1/player/lookup — resolve PUBG Mobile nickname & region via Midas before redeem (0.25 quota when successful).

Stock batch redeem

POST /v1/jobs/stock-redeem — pull codes from your uploaded inventory and redeem in bulk like the bot stock tools.

Account & quota

GET /v1/me, GET /v1/quota — subscription status, daily limits, trial left, API access.

History & stock summary

GET /v1/history, GET /v1/stock/summary — receipts, accounting exports, denomination counts.

PUBG Mobile player ID lookup API showing nickname and region before UC redeem
Player lookup confirms the nickname and region before any UC is sent.

Core endpoints (base: api.pubgredeemerbot.com)

POST /v1/jobs/manual-redeemManual UC redeem job
POST /v1/jobs/check-codeCheck / validate code
GET /v1/player/lookupPlayer nickname lookup
GET /v1/meAccount snapshot
GET /v1/quotaQuota & limits
GET /v1/jobs/{id}Poll job status
GET /v1/historyRedemption history

Authentication

All /v1/* routes use Authorization: Bearer YOUR_API_KEY. Generate the key in @SparkUCBot after an active plan + HTTP API add-on (15 USDT / 30 days).

Integration in 3 steps

Typical Midasbuy API integration flow for shops and panels.

Subscribe + API add-on

Open @SparkUCBot → subscribe to a daily plan → purchase HTTP API add-on → copy your API key.

Call redeem or check-code

POST a job with Player ID + voucher code(s). Receive job_id instantly.

Poll until done

GET /v1/jobs/{job_id} until status is done or failed. Handle errors from documented codes.

Midasbuy code check API result: valid, used, or expired PUBG UC vouchers
Validate Midasbuy vouchers with check-code before you redeem or sell them.

Example — create redeem job

# 1) Create manual-redeem job
curl -X POST "https://api.pubgredeemerbot.com/v1/jobs/manual-redeem" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"player_id":"5123456789","codes":["XXXX-XXXX-XXXX"]}'

# 2) Poll job
curl -s "https://api.pubgredeemerbot.com/v1/jobs/JOB_ID" \
  -H "Authorization: Bearer YOUR_API_KEY"

# Check-code (validate Midasbuy voucher without redeem)
curl -X POST "https://api.pubgredeemerbot.com/v1/jobs/check-code" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"codes":["XXXX-XXXX-XXXX"]}'
Midasbuy-style HTTP API: POST manual-redeem and poll job status for PUBG UC
Shops and resellers automate UC redemption with the HTTP API.

Telegram bot vs HTTP API

Bot: manual chat, free trial, USDT wallet, best for individuals.

API: Midasbuy-style automation, panels, reseller systems, polling-based integrations.

Keywords & use cases

Midasbuy API, Midasbuy redeem API, PUBG Mobile UC API, Midasbuy code check API, voucher validation API, UC redemption API, pubgredeemerbot API, SparkUCBot API, Midasbuy integration, PUBG UC reseller API, auto redeem Midasbuy, Unknown Cash API, Midasbuy automation, player lookup API, stock redeem API.

Midasbuy API FAQ

Is this the official Midasbuy API?
No. Spark UC Bot provides an independent HTTP API that processes PUBG Mobile UC / Midasbuy-style voucher codes through the same redemption pipeline as our Telegram bot.
What is the API base URL?
Production: https://api.pubgredeemerbot.com — Docs: /docs — Swagger: /swagger — Health: /health
Can I check codes before redeeming?
Yes. Use POST /v1/jobs/check-code to validate vouchers (batch up to 10 per job) without redeeming to a player.
Is redeem synchronous?
Redeem and check-code are async jobs. POST returns job_id; poll GET /v1/jobs/{id}. Player lookup is synchronous GET.
How much does API access cost?
Requires an active subscription plan (from 5 USDT/month) plus HTTP API add-on 15 USDT / 30 days. Free API trial may be granted by admin.
Support?
Telegram @sparkuc_support — integration help, API trials, billing.

Start building with the Midasbuy-style API

Documentation, Swagger, and API keys — everything in one stack.

Read full documentation