Home Glory
Wallet
Dash Profile
Help Center Home

Reseller API Integration

FF GLORY INDIA offers a RESTful API for resellers to connect their panels, automate order routing, and query credit balances.

1. Authentication

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

2. Place Glory Campaign

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
}

3. Query Campaign Progress

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
}
Tip: Whitelisting IP Addresses For added security, you can configure allowed server IPs in your reseller account panel to restrict API usage to your specific server nodes.