API Base Information
POST/GET
Active
https://barakamedia.smmforge.uz/api/v2
| Parameter | Description | Type | Required |
|---|---|---|---|
| HTTP Method | POST or GET | POST GET | Required |
| API URL | Base URL for all API requests | URL | Required |
| Bot | Support bot for assistance | @barakamedia_bot | Optional |
Service List
Retrieve all available services and their details.
| Parameter | Description | Type | Required |
|---|---|---|---|
| key | Your API key | String | Required |
| action | Action type | String: "services" | Required |
JSON Response
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "0.90",
"min": "50",
"max": "10000",
"refill": true,
"cancel": true
},
{
"service": 2,
"name": "YouTube Views",
"type": "Default",
"category": "YouTube",
"rate": "8",
"min": "100",
"max": "100000",
"refill": false,
"cancel": true
}
]
Add Order
Create a new order for any service.
| Parameter | Description | Type | Required |
|---|---|---|---|
| key | Your API key | String | Required |
| action | Action type | String: "add" | Required |
| service | Service ID | Integer | Required |
| link | Link to page | URL | Required |
| quantity | Needed quantity | Integer | Required |
| runs | Runs to deliver | Integer | Optional |
| interval | Interval in minutes | Integer | Optional |
JSON Response
{
"order": 23501,
"message": "Order created successfully"
}
Order Status
Check the status of an existing order.
| Parameter | Description | Type | Required |
|---|---|---|---|
| key | Your API key | String | Required |
| action | Action type | String: "status" | Required |
| order | Order ID | Integer | Required |
JSON Response
{
"charge": "0.27819",
"status": "Partial",
"currency": "UZS",
"start_count": 1000,
"remains": 500
}
User Balance
Check your account balance.
| Parameter | Description | Type | Required |
|---|---|---|---|
| key | Your API key | String | Required |
| action | Action type | String: "balance" | Required |
JSON Response
{
"balance": "2182.66",
"currency": "UZS"
}
All Orders
| Parameter | Description | Type | Required |
|---|---|---|---|
| key | Your API key | String | Required |
| action | Action type | String: "orders" | Required |
Multiple Orders Status
| Parameter | Description | Type | Required |
|---|---|---|---|
| key | Your API key | String | Required |
| action | Action type | String: "status" | Required |
| orders | Order IDs separated by comma | String | Required |
Create Refill
| Parameter | Description | Type | Required |
|---|---|---|---|
| key | Your API key | String | Required |
| action | Action type | String: "refill" | Required |
| order | Order ID | Integer | Required |
Getting Started
PHP Example