​🌐 AURPON MODz HUB ━━━━━━━━━━━━━━ ⚙ïļ Website Features ◉ Premium Mod APKs 🔓 ◉ Glassmorphism UI 💎 ◉ Super Fast Download 🚀 ◉ Direct Link (No Ads) ðŸšŦ ◉ User Friendly Dashboard ðŸ“ą ◉ Latest & Safe Updates ✅ ╭━━━━━━━━━━━━━━━âžĢ â”Ģ⊞ VISIT NOW ➜ https://aurponmodz.2host.top ╰━━━━━━━━━━━━━━━âžĢ ðŸ“Ī Owner ➜ @aurponmodz ðŸ“Ē Stay Tuned for More Premium Mods! 🔗 ​🌐 AURPON MODz HUB ━━━━━━━━━━━━━━ ⚙ïļ Website Features ◉ Premium Mod APKs 🔓 ◉ Glassmorphism UI 💎 ◉ Super Fast Download 🚀 ◉ Direct Link (No Ads) ðŸšŦ ◉ User Friendly Dashboard ðŸ“ą ◉ Latest & Safe Updates ✅ ╭━━━━━━━━━━━━━━━âžĢ â”Ģ⊞ VISIT NOW ➜ https://aurponmodz.2host.top ╰━━━━━━━━━━━━━━━âžĢ ðŸ“Ī Owner ➜ @aurponmodz ðŸ“Ē Stay Tuned for More Premium Mods! 🔗
Reseller API

Reseller API Documentation

Place orders programmatically by tag_line. Orders are charged to your wallet balance — how each package is actually fulfilled behind the scenes is never something you need to worry about.

Authentication

Every request must include your api_key as a field in the request body (JSON for POST, query string for GET). Your key is auto-issued at registration and visible on your dashboard.

{
  "api_key": "AMz-XXXXXXXXXXXXXXXXXXXXXXXX",
  ...
}
Base URL
https://amzapi.aurponff.com/api

Every successfully placed order deducts its price from your wallet balance. If your balance is too low, the order is rejected with 402 Payment Required. Keep your API key secret — anyone with it can place orders that draw from your wallet.

Packages

Every orderable package has a tag_line — that's the identifier you send in the API, not the package name. Prices are charged to your wallet balance.

Reseller Only

25 Diamond

tag_line: 25
ā§ģ 19.00
Reseller Only

50 Diamond

tag_line: 50
ā§ģ 38.00
Reseller Only

Weekly Lite

tag_line: LITE
ā§ģ 40.00
Reseller Only

Level Up 6

tag_line: LV6
ā§ģ 40.00
Reseller Only

Level Up 15

tag_line: LV15
ā§ģ 65.00
Reseller Only

Level Up 20

tag_line: LV20
ā§ģ 65.00
Reseller Only

Level Up 25

tag_line: LV25
ā§ģ 65.00
Reseller Only

Level Up 10

tag_line: LV10
ā§ģ 65.20
Reseller Only

115 Diamond

tag_line: 115
ā§ģ 77.00
Reseller Only

Level Up 30

tag_line: LV30
ā§ģ 95.00
Reseller Only

240 Diamond

tag_line: 240
ā§ģ 150.00
Reseller Only

Weekly

tag_line: WEEKLY
ā§ģ 150.00
Reseller Only

610 Diamond

tag_line: 610
ā§ģ 378.00
Reseller Only

Full Level Up Pass

tag_line: LVFULL
ā§ģ 380.00
Reseller Only

Monthly

tag_line: MONTHLY
ā§ģ 740.00
Reseller Only

1240 Diamond

tag_line: 1240
ā§ģ 750.00
Reseller Only

2530 Diamond

tag_line: 2530
ā§ģ 1,500.00

Place an Order

POST /api/resale-order
Field Required Description
api_keyYesYour account's API key
account_info.player_idYesFree Fire player UID
selectedPackage.tag_lineYes*Package identifier — *or use items[] below
quantityNoDefault 1
order_idYesYour own unique order reference
urlNoWebhook URL for the final result
curl -X POST https://amzapi.aurponff.com/api/resale-order \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "AMz-XXXXXXXXXXXXXXXXXXXXXXXX",
    "account_info": { "player_id": "123456789" },
    "selectedPackage": { "tag_line": "100" },
    "quantity": 1,
    "order_id": "YOUR-REF-0001",
    "url": "https://your-store.com/webhooks/topup"
  }'
Success Response
{
  "message": "Order Placed Successfully",
  "order": {
    "id": 10234,
    "order_id": "YOUR-REF-0001",
    "status": "pending",
    "payment": "complete",
    "package_name": "100 Diamonds",
    "sale_price": 95,
    "qty": 1,
    "content": null
  }
}

Order Multiple Packages

Same endpoint — send an items array instead of selectedPackage + quantity. You can freely mix ANY of your packages in one request — how each one is actually fulfilled behind the scenes is entirely our own business; you only ever deal in tag_line.

{
  "api_key": "AMz-XXXXXXXXXXXXXXXXXXXXXXXX",
  "account_info": { "player_id": "123456789" },
  "items": [
    { "tag_line": "100", "quantity": 1 },
    { "tag_line": "200", "quantity": 2 }
  ],
  "order_id": "YOUR-REF-0001",
  "url": "https://your-store.com/webhooks/topup"
}

When every item in the request settles cleanly you'll still get the single order shape shown above for a single item, or an items array (below) once more than one item is involved — each entry uses the exact same fields either way, so you only need to write one parser:

{
  "message": "Order Placed Successfully",
  "items": [
    {
      "order_id": "YOUR-REF-0001",
      "tag_line": "100",
      "status": "complete",
      "payment": "complete",
      "package_name": "100 Diamonds",
      "sale_price": 95,
      "qty": 1,
      "content": null
    },
    {
      "order_id": "YOUR-REF-0001",
      "tag_line": "200",
      "status": "complete",
      "payment": "complete",
      "package_name": "200 Diamonds",
      "sale_price": 180,
      "qty": 2,
      "content": null
    }
  ]
}

status is "complete" or "cancel" per item — check each one individually rather than only the top-level HTTP status, since a mixed request can partially succeed (HTTP 207). You're only ever charged for items that actually completed.

Check Order Status

GET /api/resale-order/status
curl "https://amzapi.aurponff.com/api/resale-order/status?api_key=AMz-XXXXXXXXXXXXXXXXXXXXXXXX&order_id=YOUR-REF-0001"

Works for any order regardless of which package/provider fulfilled it — you never need to know or track that yourself.

Webhooks

If your order's final result isn't known immediately, the result is POSTed directly to the url you supplied once it completes or fails:

{
  "orderid": "YOUR-REF-0001",
  "status": "success",
  "content": "ABCD-EFGH-1234",
  "codes": []
}

Most orders resolve synchronously and you'll already have the final result in the API response itself — url is a safety net for the rare case where it doesn't. Either way, Check Order Status always reflects the true current state.