API Details

The Wizard4SocialMedia API will allow you to interact with our website by simply sending a request to our server. This service is offered free of charge.

You can automate order placement, track delivery status, track your current funds, and access all of our services/packages information programmatically. Perfect for resellers running their own panels, agencies managing multiple clients, or developers building custom solutions.

HTTP Method POST
API URL https://wizard4socialmedia.com/api/v2
API Key Get an API key on your Account page
Response Format JSON
Example of PHP Code https://wizard4socialmedia.com/example.txt
Add Order

Use this method to place a new order for any active package.

Parameters Descriptions
api_token Your API token
action Method Name
package ID of package
link Link to page
quantity Needed quantity
custom_data optional, needed for custom comments, mentions and other relaed packages only.
each separated by '\n', '\n\r'

Success Response:

{
  "order":"23501"
}
Order Status

Use this method to get the order status for any of your orders.

When getting order status we ask that you do not do so excessively otherwise we may be required to throttle your requests.

Parameters Descriptions
api_token Your API token
action Method Name
order Order ID

Success Response:

{
  "status": "Completed",
  "start_counter": "600",
  "remains": "600"
}
Cancel Order

An order can be cancelled automatically via API if the "Start Count" is still empty (it takes 10-20 minutes to be cancelled and refunded). Once the "Start Count" has been updated, the work on the order has begun, and it can no longer be cancelled automatically via API anymore.

For orders that have been started, we may still be able to cancel them manually, but you will have to request a cancellation by Opening a Ticket.

Parameters Descriptions
api_token Your API token
action Method Name
order Order ID(s), comma separated, up to 100 IDs

Example Response:

[
  {
    "order": 721,
    "cancel": 1,
    "message": "We are now attempting to cancel your order..."
  },
  {
    "order": 722,
    "errors": ["This order cannot be cancelled because its current status is COMPLETED."]
  }
]
Packages List

This will return all active packages with their pricing and parameters available for your account. This will have all the info needed for you to automatically setup or determine pricing.

Parameters Descriptions
api_token Your API token
action Method Name

Example Response:

[
  {
      "id": 101,
      "service_id": 1,
      "name": "Real & Active Followers - Best Server",
      "rate": "250.00",
      "min": "100",
      "max": "100000",
      "service": "Instagram Followers",
      "type": "default",
      "cancel": true,
      "desc": "0-3 Hours Start | Full Link | 20 Days Refill\r\nLink Format:\r\nhttps://www.instagram.com/official_social_sale/"
  },
  {
      "id": 107,
      "service_id": 1,
      "name": "Indian Mixed Followers",
      "rate": "150.00",
      "min": "200",
      "max": "10000",
      "service": "Instagram Followers",
      "type": "default",
      "cancel": false,
      "desc": "0-12 Hours Start | Full Link |\r\nLink Format:\r\nhttps://www.instagram.com/official_social_sale/"
  },
  {
      "id": 30067,
      "service_id": 1,
      "name": "Instagram Followers - Worldwide",
      "rate": "103.00",
      "min": "100",
      "max": "10000",
      "service": "Instagram Followers",
      "type": "default",
      "cancel": true,
      "desc": "10k/day\r\nMax - 55k\r\n8 Hours Start"
  }
]
Get Current Funds

Used to get the amount of available funds on your account.

Parameters Descriptions
api_token Your API token
action Method Name

Example Response:

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