Methods

Objects

VOICE & SMS JSON API

Fully integrate voice applications that you need in your professional tools. Enjoy multiple features such as realtime call control, call tracking, call automation, push SMS, click-to-call, detailed reports & stats, audio conferencing and much more.

#API #JSON #CONFERENCING #VOICE #SMS #TTS #NUMBERS

VOICE & SMS JSON API

Our SDKs (GitHub)

Example: Send an SMS

    // composer require callr/sdk-php

    require 'vendor/autoload.php';

    $api = new \CALLR\API\Client;
    $api->setAuth(new \CALLR\API\Authentication\LoginPasswordAuth('login', 'password'));

    $result = $api->call('sms.send', [ 'SMS', '+33612345678', 'Hello world!', null ]);
    
    // npm install callr

    var callr = require('callr');
    var api = new callr.api(callr.loginPasswordAuth('login', 'password'));

    api.call('sms.send', 'SMS', '+33612345678', 'Hello world!', null).success(function(response) {
    // success callback
    });
    
    # gem install callr

    require 'callr'
    api = CALLR::Api.new('login', 'password')

    result = api.call('sms.send', 'SMS', '+33612345678', 'Hello world!', nil)
    
    # pip install callr

    import callr
    api = callr.Api("login", "password")

    result = api.call('sms.send', 'SMS', '+33612345678', 'Hello world!', None)
    
            

Our customers

Customers

Have a question?

Check out our Knowledge Base to make the most of our API

Need help?

support@callr.com