API Documentation
Integrate RapidFame services directly into your own platform or application. Our API follows the standard SMM Panel v2 protocol.
Authentication
All API requests are made via HTTP POST to our API endpoint. You must include your API Key in every request using the key parameter.
POST
https://rapidfame.ng/api/v2You can find your API Key in your Account Settings.
Service List
Get a list of all available services.
Parameters
| Parameter | Description |
|---|---|
| key | Your API Key |
| action | Value should be services |
Example Request
curl -X POST https://rapidfame.ng/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=services"
Example Response
[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "Instagram",
"rate": "0.90",
"min": "50",
"max": "10000"
},
{
"service": 2,
"name": "Comments",
"type": "Custom Comments",
"category": "Instagram",
"rate": "8",
"min": "10",
"max": "1500"
}
]Add Order
Place a new order.
Parameters
| Parameter | Description |
|---|---|
| key | Your API Key |
| action | Value should be add |
| service | Service ID |
| link | Link to page/post |
| quantity | Quantity needed |
Example Request
curl -X POST https://rapidfame.ng/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=add" \ -d "service=1" \ -d "link=https://instagram.com/p/abcd" \ -d "quantity=1000"
Example Response
{
"order": 23501
}Order Status
Check status of an order.
Parameters
| Parameter | Description |
|---|---|
| key | Your API Key |
| action | Value should be status |
| order | Order ID |
Example Request
curl -X POST https://rapidfame.ng/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=status" \ -d "order=123456"
Example Response
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "NGN"
}User Balance
Get current user balance.
Example Request
curl -X POST https://rapidfame.ng/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=balance"
Example Response
{
"balance": "100.84",
"currency": "NGN"
}