Developer API

SMM.BZ REST API v2.

Full REST API for resellers and developers. 99.9% uptime, sub-50ms responses, 487 services.

99.9%
API Uptime
<50ms
Avg Response
487
Services via API
REST
Protocol
API Documentation

Full REST API for resellers and developers.

Integrate SMM.BZ into your platform, bot, or agency dashboard.

Authentication

All requests require your API key. Find yours in Dashboard / API. Pass it as the key parameter in every POST request.

Endpoints

Available endpoints

EndpointDescription
GET /v2/servicesReturns all active services with IDs, pricing, and limits.
POST /v2/orderPlace a new order. Requires service_id, link, quantity.
GET /v2/order/{id}Get status and details for a specific order.
GET /v2/ordersGet all orders for the authenticated account.
GET /v2/balanceReturns current wallet balance.
POST /v2/refillRequest a refill for an eligible order.
GET /v2/refill/{id}Check refill request status.
POST /v2/cancelCancel a pending order.
Code Examples

Quick start code

# Get all services
curl -X POST https://smmbz.com/api/v2 \
  -d "key=YOUR_API_KEY&action=services"

# Place an order
curl -X POST https://smmbz.com/api/v2 \
  -d "key=YOUR_API_KEY&action=add&service=1&link=https://instagram.com/username&quantity=1000"

# Check order status
curl -X POST https://smmbz.com/api/v2 \
  -d "key=YOUR_API_KEY&action=status&order=12345"

Get your API key in the dashboard.

Sign up free. Find your key under Dashboard / API Settings.

Get your API key