Developers

Secure, Scalable & Powerful Bulk SMS APIs

Integrate into your own application, website or CRM with the our API.Easily integrate any application and start sending SMS in minutes. Access sample codes in PHP, Java, .NET & more.

Content-Type & Accept header

SMS API supports JSON and XML Content-Types and Accept criteria that should be specified in the header. If the Content-Type is not specified you will receive a General error. Depending which Accept type is chosen in the deader for the request, the same one will be applied in the response.

Content-Type: application/json or application/xml.

Accept header: application/json or application/xml.

Authorization

We support basic authorization using a username and password with Base64 encoding variation RFC2045-MIME

The authorization header is constructed as follows:

  1. Username and password are combined into a string username:password.
  2. The resulting string is encoded using the RFC2045-MIME variant of Base64.
  3. The authorization method and a space, like this: "Basic ", are put before the encoded string.

Example

Username: Aladdin Password: open sesame Base64 encoded string: QWxhZGRpbjpvcGVuIHNlc2FtZQ== Authorization header: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
Need More Details