Getting Started

Our API allows resellers to integrate our SMM services into their own platforms. To get started, you need a reseller account with an API key.

Register as a reseller to get your API key.

API Endpoint

https://smmplusmedia.com.tr//api/v1

Authentication

All API requests require authentication using your API key. Include it in every request:

key=YOUR_API_KEY

Get Services List

GET
POST https://smmplusmedia.com.tr//api/v1
Parameters:
  key: YOUR_API_KEY
  action: services

Response Example

[
  {
    "service": 1,
    "name": "Instagram Followers - High Quality",
    "category": "Instagram",
    "rate": "2.50",
    "min": 100,
    "max": 50000
  },
  ...
]

Create Order

POST
POST https://smmplusmedia.com.tr//api/v1
Parameters:
  key: YOUR_API_KEY
  action: add
  service: SERVICE_ID
  link: https://instagram.com/username
  quantity: 1000

Response Example

{
  "order": 12345
}

Check Order Status

POST
POST https://smmplusmedia.com.tr//api/v1
Parameters:
  key: YOUR_API_KEY
  action: status
  order: ORDER_ID

Response Example

{
  "status": "completed",
  "charge": "2.50",
  "start_count": "1000",
  "remains": "0"
}

Check Balance

POST
POST https://smmplusmedia.com.tr//api/v1
Parameters:
  key: YOUR_API_KEY
  action: balance

Response Example

{
  "balance": "150.50",
  "currency": "USD"
}

Error Codes

Code Description
invalid_api_key The API key provided is invalid or inactive
insufficient_balance Not enough balance to complete the order
invalid_service The service ID does not exist or is inactive
invalid_quantity Quantity is outside the min/max range
invalid_link The provided link is invalid
order_not_found The order ID does not exist