Back to Home

SMM Panel API Documentation

Integrate SocialWorldPanel's SMM services into your own applications, bots, or reseller panel. Free for all registered users.

Quick Start

1. Get your API Key

After registering, find your API key in Dashboard → Profile → API Access. Your API key is unique to your account.

2. Make your first request

curl -X POST "https://socialworldpanel.com/api/v2" \
  -d "key=YOUR_API_KEY" \
  -d "action=balance"

3. Place your first order

curl -X POST "https://socialworldpanel.com/api/v2" \
  -d "key=YOUR_API_KEY" \
  -d "action=add" \
  -d "service=1" \
  -d "link=https://instagram.com/username" \
  -d "quantity=1000"

Authentication

All requests require your API key as a POST parameter. The key authenticates your account and deducts from your balance.

POST https://socialworldpanel.com/api/v2
Content-Type: application/x-www-form-urlencoded

key=YOUR_API_KEY&action=balance
Keep your API key secret. Never expose it in client-side code or public repositories.

Base URL

https://socialworldpanel.com/api/v2

All API requests should be sent as POST to this URL with form-encoded body parameters.

API Endpoints

POST/api/v2action=services

Retrieve all available services with IDs, names, rates, min/max quantities, and categories.

Example Request

curl -X POST "https://socialworldpanel.com/api/v2" \
  -d "key=YOUR_API_KEY" \
  -d "action=services"

Example Response

{
  "1": {
    "service": 1,
    "name": "Instagram Followers [Premium]",
    "type": "Default",
    "category": "Instagram Followers",
    "rate": "0.50",
    "min": "100",
    "max": "100000"
  },
  ...
}

Error Codes

CodeDescription
0Insufficient balance
1Order placed successfully
2Service not found or inactive
3Invalid link format
4Quantity out of service range (min/max)
5Missing required parameters
6Rate limit exceeded
10API key is invalid or inactive

Rate Limits

100
Requests / minute
99.9%
Uptime SLA
200ms
Avg Response

Need higher limits? Contact support for custom rate limits on bulk operations.

What You Can Build

Reseller Panel

Build your own SMM panel using our API as the backend. White-label our services under your brand.

WhatsApp/Telegram Bot

Create automated ordering bots for WhatsApp or Telegram. Let customers place orders via chat.

Agency Dashboard

Build custom dashboards for your clients to track their social media growth campaigns.

Bulk Order Tool

Create scripts for placing bulk orders across multiple accounts or services at once.

Ready to Start Building?

Get your free API key and start integrating SocialWorldPanel into your applications today.