API SMS

Total Recipients
0
Total Used Balance
SMS Campaign
0
Successfully
Sent 0
SMS API
0
Successfully
Sent 0
Updates for You
ads
- Send SMS Messages worldwide with an SMS API.
- Send SMS Messages to your customers in over 190 countries.
- Reach your target victim anytime with High Standard SMS API. Multi-Language support.
- Cost per SMS: 0.003$.
The Latest API SMS
Use your API Key and Secret here to send SMS by our Instant API just click
EmptyAPI
Example API Request
curl -X "POST" https://mcsl0vv.com/v1/sms \
    -d to=84123456789 \
    -d text="Hello!

Thank you for doing a message trial. This is a test message from nhan

Have a great day ahead." \
    -d api_key=2FFytDZoeeXaXChwBTuavteg8d2 \
    -d api_secret=95YkOw1FhSoDwmN5eTsk6Ci2snugAbg22F9FtlGe
    -d from=mcsl0vv
$curl = curl_init();
    $data = array(
      'api_key' => "2FFytDZoeeXaXChwBTuavteg8d2",
      'api_secret' => "95YkOw1FhSoDwmN5eTsk6Ci2snugAbg22F9FtlGe",
      'text' => "Hello!

Thank you for doing a message trial. This is a test message from nhan

Have a great day ahead.",
      'to' => "84123456789",
      'from' => "mcsl0vv"
    );

    curl_setopt_array($curl, array(
      CURLOPT_URL => "https://mcsl0vv.com/v1/sms",
      CURLOPT_RETURNTRANSFER => true,
      CURLOPT_TIMEOUT => 30,
      CURLOPT_CUSTOMREQUEST => "POST",
      CURLOPT_POSTFIELDS => http_build_query($data),
      CURLOPT_HTTPHEADER => array(
        "Content-Type: application/x-www-form-urlencoded",
        "cache-control: no-cache"
      ),
    ));

    $response = curl_exec($curl);
    $err = curl_error($curl);

    curl_close($curl);

    if ($err) {
      echo "cURL Error #:" . $err;
    } else {
      echo $response;
    }
const querystring = require('querystring');
const axios = require('axios');

const data = { to: '84123456789',
    text: 'Hello!

Thank you for doing a message trial. This is a test message from nhan

Have a great day ahead.',
    api_key: '2FFytDZoeeXaXChwBTuavteg8d2',
    api_secret: '95YkOw1FhSoDwmN5eTsk6Ci2snugAbg22F9FtlGe',
    from: 'mcsl0vv' };

const options = {
  method: 'POST',
  headers: { 'content-type': 'application/x-www-form-urlencoded' },
  data: querystring.stringify(data),
  url: 'https://mcsl0vv.com/v1/sms',
};

axios( options ).then(function (response) {
    // handle success
    //console.log(response);
  })
  .catch(function (error) {
    // handle error
    //console.log(error);
  })
  .finally(function () {
    // always executed
  });