Good Morning
Sign In Sign Up
Good Evening — Wednesday
Developers

API Documentation

Integrate My Website into your own apps. Resell social account logs and SMM boosting services using your wallet balance.

Log in for your API Key

Authentication

Pass your personal API key on every request. Find or regenerate it in the developer API area after logging in.

Example
api_key=YOUR_API_KEY

SMM API

Social media boosting services.

Base URL https://realbuyget.com/api/v1/smm

Accepts and returns JSON.

Flow: servers → categories → services (with rates) → order

GET/POST /api/v1/smm/balance

Returns wallet balance (JSON).

https://realbuyget.com/api/v1/smm/balance?api_key=YOUR_API_KEY { "status": "success", "balance": 25.40, "currency": "₦" }
GET/POST /api/v1/smm/servers

List active SMM servers (JSON).

https://realbuyget.com/api/v1/smm/servers?api_key=YOUR_API_KEY { "status": "success", "servers": [{ "id": 1, "name": "Server A" }] }
GET/POST /api/v1/smm/categories

Categories for a server. Requires server_id from servers list.

https://realbuyget.com/api/v1/smm/categories?api_key=YOUR_API_KEY&server_id=1 { "status": "success", "categories": [{ "id": 2, "name": "Instagram", "server_id": 1 }] }
GET/POST /api/v1/smm/services

Services with prices for a server + category. rate is price per 1000 units.

https://realbuyget.com/api/v1/smm/services?api_key=YOUR_API_KEY&server_id=1&category_id=2 { "status": "success", "services": [ { "id": 12, "name": "Followers", "rate": "2.5000", "min": 100, "max": 10000, "refill": false } ] }
GET/POST /api/v1/smm/order

Place an order. Uses internal service_id from the services list.

https://realbuyget.com/api/v1/smm/order?api_key=YOUR_API_KEY&service_id=12&link=https://example.com/post&quantity=1000 { "status": "success", "order": { "id": 1, "price": "5.00", "status": "processing" } }
GET/POST /api/v1/smm/status

Check order status by internal order id.

https://realbuyget.com/api/v1/smm/status?api_key=YOUR_API_KEY&order_id=1
GET/POST /api/v1/smm/cancel

Cancel a pending/processing order and refund wallet.

https://realbuyget.com/api/v1/smm/cancel?api_key=YOUR_API_KEY&order_id=1

JSON errors: { "status": "error", "message": "..." }

Need Help?

Having trouble integrating? Reach out via our contact page and our team will assist you with any questions or issues.