Base URL: https://like.7hsiam.top/api/
All requests require your reseller api_key and api_secret, available from
your dashboard after becoming a reseller (contact admin).
/api/packages.php?api_key=YOUR_KEY&api_secret=YOUR_SECRET
{
"status": "success",
"packages": [
{
"id": 1,
"title": "100 FF Likes",
"likes_amount": 100,
"price": 22.00
}
]
}
/api/reseller_verify_uid.php?api_key=YOUR_KEY&api_secret=YOUR_SECRET&uid=123456789
{
"status": "success",
"player_name": "ExamplePlayer"
}
/api/place_order.php
Body (JSON or form-encoded):
{
"api_key": "YOUR_KEY",
"api_secret": "YOUR_SECRET",
"package_id": 1,
"uid": "123456789"
}
Response:
{
"status": "success",
"order_no": "FF250920AB12CD",
"order_status": "pending"
}
/api/order_status.php?api_key=YOUR_KEY&api_secret=YOUR_SECRET&order_no=FF250920AB12CD
{
"status": "success",
"order_status": "completed"
}
/api/balance.php?api_key=YOUR_KEY&api_secret=YOUR_SECRET
{
"status": "success",
"balance": 1520.00
}
{
"status": "error",
"message": "Invalid API key or secret"
}
Auto packages configured by the admin are submitted to the upstream fflikebd.pro API using action=add, the package's provider service ID, the UID as link, and a webhook URL. The provider can later update the order through the site's /webhook.php endpoint.