VI OFFRIAMO IL MODO MIGLIORE DI INTERAGIRE CON I CLIENTI!

Entra in contatto con i clienti in modo semplice e sicuro!

Comunicare non e’ mai stato così semplice e conveniente!

Invece di usare i tradizionali strumenti per il marketing, Jo Mobile ti da la possibilità di interagire con il tuo cliente attraverso campagne di marketing SMS in tutto il mondo.


La comunicazione tramite SMS è il futuro!

Jo Mobile aiuta Communication Service Providers e imprese in tutto il mondo a verificare, assumere e autenticare utenti mobile attraverso convalida del contatto, autenticazione utente e commercio colloquiale!

Le soluzioni Jo Mobile

SMS

Usa gli SMS per acquisire clienti!
Gli SMS sono più che messaggistica, sono un modo per creare entrate per la tua attività.
Potete raggiungere potenziali clienti e tenere vicino quelli attuali.

Verifica

Proteggi la tua attività!
Per tenere al sicuro i clienti, per proteggere la tua attività e evitare possibili frodi, usa il nostro servizio di verifica.



HLR

Non sprecare i tuoi soldi!
Usa il nostro servizio HLR o MNP e paga solo per quello che invii! Cerca la soluzione migliore per verificare un database di numeri

Proxy

Il nostro servizio Proxy ti da uno strumento importante per accedere all’IP più stabile dei mobile proxies. Col nostro strumento potrai ottenere una lista di posizioni che ti aiuterà a evitare restrizioni geografiche. Il nostro team si assicurerà che i server Mobile Proxy siano aggiornati e stabili!

Il cliente è il Re!

La soddisfazione del cliente è il nostro obiettivo principale: con più di 400k di clienti soddisfatti aiutiamo le persone a comunicare in tutto il mondo rendendo il loro modo di comunicare più semplice e veloce!

Jo Mobile ha più di 100 interconnessioni e abbiamo il 93% di soddisfazione dei clienti!

SMS API for Developers

Implementa notifiche SMS, OTP, promemoria ecc. nel tuo flusso di lavoro e crea app che inviano SMS con la nostra API SMS SSL ridondante. *

curl --location --request POST 'https://restapi.jomobile.online/v1/send' \
--header 'X-Access-Token: b8fa22f0746fa12dfb40e1a8ae6acce2' \
--header 'Content-Type: application/json' \
--header 'charset: UTF-8' \
--data-raw '[{
  "number":["380662225588"],
  "senderID":"SMS",
  "text":"Hello are you?",
  "type":"sms",
  "beginDate":"2018-12-31",
  "beginTime":"11:00",
  "lifetime":555,
  "delivery":false
},
{
  "number":["380662225582","79225558877"],
  "senderID":"SMS",
  "text":"Hello\nHow are you?",
  "type":"sms",
  "beginDate":"2018-12-31",
  "beginTime":"11:00",
  "lifetime":555,
  "delivery":false
}]'
 'https://restapi.jomobile.online/v1/send',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'[{
  "number":["380662225588"],
  "senderID":"SMS",
  "text":"Hello are you?",
  "type":"sms",
  "beginDate":"2018-12-31",
  "beginTime":"11:00",
  "lifetime":555,
  "delivery":false
},
{
  "number":["380662225582","79225558877"],
  "senderID":"SMS",
  "text":"Hello\\nHow are you?",
  "type":"sms",
  "beginDate":"2018-12-31",
  "beginTime":"11:00",
  "lifetime":555,
  "delivery":false
}]',
  CURLOPT_HTTPHEADER => array(
    'X-Access-Token: b8fa22f0746fa12dfb40e1a8ae6acce2',
    'Content-Type: application/json',
    'charset: UTF-8'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
var https = require('follow-redirects').https;
var fs = require('fs');

var options = {
  'method': 'POST',
  'hostname': 'restapi.jomobile.online',
  'path': '/v1/send',
  'headers': {
    'X-Access-Token': 'b8fa22f0746fa12dfb40e1a8ae6acce2',
    'Content-Type': 'application/json',
    'charset': 'UTF-8'
  },
  'maxRedirects': 20
};

var req = https.request(options, function (res) {
  var chunks = [];

  res.on("data", function (chunk) {
    chunks.push(chunk);
  });

  res.on("end", function (chunk) {
    var body = Buffer.concat(chunks);
    console.log(body.toString());
  });

  res.on("error", function (error) {
    console.error(error);
  });
});

var postData = JSON.stringify([
  {
    "number": [
      "380662225588"
    ],
    "senderID": "SMS",
    "text": "Hello are you?",
    "type": "sms",
    "beginDate": "2018-12-31",
    "beginTime": "11:00",
    "lifetime": 555,
    "delivery": false
  },
  {
    "number": [
      "380662225582",
      "79225558877"
    ],
    "senderID": "SMS",
    "text": "Hello\nHow are you?",
    "type": "sms",
    "beginDate": "2018-12-31",
    "beginTime": "11:00",
    "lifetime": 555,
    "delivery": false
  }
]);

req.write(postData);

req.end();
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "[{\r\n  \"number\":[\"380662225588\"],\r\n  \"senderID\":\"SMS\",\r\n  \"text\":\"Hello are you?\",\r\n  \"type\":\"sms\",\r\n  \"beginDate\":\"2018-12-31\",\r\n  \"beginTime\":\"11:00\",\r\n  \"lifetime\":555,\r\n  \"delivery\":false\r\n},\r\n{\r\n  \"number\":[\"380662225582\",\"79225558877\"],\r\n  \"senderID\":\"SMS\",\r\n  \"text\":\"Hello\\nHow are you?\",\r\n  \"type\":\"sms\",\r\n  \"beginDate\":\"2018-12-31\",\r\n  \"beginTime\":\"11:00\",\r\n  \"lifetime\":555,\r\n  \"delivery\":false\r\n}]");
Request request = new Request.Builder()
  .url("https://restapi.jomobile.online/v1/send")
  .method("POST", body)
  .addHeader("X-Access-Token", "b8fa22f0746fa12dfb40e1a8ae6acce2")
  .addHeader("Content-Type", "application/json")
  .addHeader("charset", "UTF-8")
  .build();
Response response = client.newCall(request).execute();