string
required
Your API key
string
required
The order ID from your history, e.g.
WEB-000042string
Optional description of why you need a replacement
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Request a replacement
WEB-000042{
"reason": "Account was already banned when I received it."
}
{
"success": true,
"data": {
"pending": true,
"message": "Replacement request submitted. An admin will review it and process the refund."
}
}
curl -X POST https://mogalts.win/v1/replace/WEB-000042 \
-H "X-API-Key: mog_your_key_here" \
-H "Content-Type: application/json" \
-d '{"reason":"Account was banned on Hypixel"}'
import requests
response = requests.post(
"https://mogalts.win/v1/replace/WEB-000042",
headers={"X-API-Key": "mog_your_key_here"},
json={"reason": "Account was banned on Hypixel"}
)
print(response.json())
