FF GLORY INDIA offers a RESTful API for resellers to connect their panels, automate order routing, and query credit balances.
All API requests must include your API Key passed as a header token parameter. You can generate or renew your API Key from your profile dashboard settings page.
Authorization: Bearer YOUR_API_KEY
Automate glory boosts by submitting a POST request to our match queuing endpoint.
POST /api/v1/orders/create
Request Body (JSON):
{
"guild_uid": "100984718",
"package_id": 2
}
Response (200 OK):
{
"success": true,
"order_id": 14092,
"status": "Pending",
"remaining_balance": 450.00
}
Check delivery status, total points farmed, and screenshot attachments.
GET /api/v1/orders/status?order_id=14092
Response (200 OK):
{
"order_id": 14092,
"guild_uid": "100984718",
"status": "Running",
"glory_delivered": 1200,
"glory_target": 1800,
"screenshot_url": null
}